This commit is contained in:
Joerg Dorgeist
2026-01-14 10:15:44 +01:00
commit 98feed1934
3 changed files with 482 additions and 0 deletions

20
manifest.json Normal file
View File

@@ -0,0 +1,20 @@
{
"manifest_version": 2,
"name": "Chrome SOCKS Proxy",
"version": "1.0.0",
"description": "Local SOCKS5 proxy that routes requests through Chrome browser",
"app": {
"background": {
"scripts": ["background.js"]
}
},
"sockets": {
"tcp": {
"connect": ["*:*"]
},
"tcpServer": {
"listen": ["*:*"]
}
},
"permissions": ["storage", "<all_urls>"]
}