anyone-extension/manifest.json
DeBros 65190ef835
New Version 1.0.3
Enhancements for Proxy Check and "Save & Enable" Button:

- Changed the endpoint for proxy checks to 'https://check.en.anyone.tech'.
- Implemented disabling of the "Save & Enable" button during the proxy check to prevent multiple submissions.
- Updated the URL in store.js from 'store.debros' to 'dapps.debros' for the dApp Store.
2025-02-12 12:17:54 +02:00

32 lines
694 B
JSON

{
"manifest_version": 3,
"name": "ANyONe Extension",
"version": "1.0.3",
"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'"
}
}