21 lines
419 B
JSON
21 lines
419 B
JSON
{
|
|
"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>", "alarms", "power"]
|
|
}
|