anyone-extension/manifest.json
johnysigma 2e28314d52 v2.0.0 - Complete extension redesign
Features:
- New modern dark UI with gradient accents
- Hostname support for custom proxy (e.g. relayup.local)
- Full private IP range bypass (10.x, 172.16-31.x, 192.168.x)
- WebRTC Leak Protection setting
- Kill Switch - block traffic if proxy disconnects
- Auto-connect on browser startup
- Custom proxy authentication (username/password)
- Bypass list for custom exceptions
- Local Network Access for printers, NAS, routers, etc
- Multiple proxy sources with automatic fallback (Arweave → GitBros → GitHub)
- Arweave as default proxy source for decentralized, permanent storage
- Auto-update interval for proxy list
2026-01-23 16:54:51 +02:00

41 lines
928 B
JSON

{
"manifest_version": 3,
"name": "ANyONe Extension",
"version": "2.0.0",
"description": "Privacy-focused Socks5 proxy management",
"permissions": [
"proxy",
"storage",
"tabs",
"scripting",
"privacy",
"webRequest",
"webRequestAuthProvider"
],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"action": {
"default_popup": "html/popup.html",
"default_title": "ANyONe - Privacy Extension",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"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'"
}
}