@gramercytech/gx-toolkit
Version:
Dev tools for create platform plugins
55 lines (48 loc) • 1.11 kB
JSON
{
"manifest_version": 2,
"name": "Traffic Proxy Extension",
"version": "1.0",
"description": "Intercept and redirect web traffic to alternative domains",
"browser_specific_settings": {
"gecko": {
"id": "javascript-proxy@gx-toolkit.dev"
}
},
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"storage",
"notifications",
"browsingData"
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_start"
}],
"browser_action": {
"default_popup": "popup.html",
"default_title": "Traffic Proxy",
"default_icon": {
"16": "icons/gx_off_16.png",
"32": "icons/gx_off_32.png",
"48": "icons/gx_off_48.png",
"128": "icons/gx_off_128.png"
}
},
"icons": {
"16": "icons/gx_off_16.png",
"32": "icons/gx_off_32.png",
"48": "icons/gx_off_48.png",
"128": "icons/gx_off_128.png"
},
"web_accessible_resources": [
"content.js"
]
}