32 lines
694 B
JSON
32 lines
694 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "ANyONe Extension",
|
|
"version": "1.0.5",
|
|
"description": "Manage Socks5 proxy settings",
|
|
"permissions": [
|
|
"proxy",
|
|
"storage",
|
|
"tabs",
|
|
"scripting"
|
|
],
|
|
"host_permissions": ["<all_urls>"],
|
|
"background": {
|
|
"service_worker": "js/background.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "html/popup.html",
|
|
"default_title": "Proxy Settings"
|
|
},
|
|
"options_ui": {
|
|
"page": "html/options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self'"
|
|
}
|
|
} |