Universal-Bypass/manifest.json
Tim Speckhals d006fb1ea5
9.0
2019-01-11 19:43:09 +01:00

60 lines
1.2 KiB
JSON

{
"manifest_version": 2,
"icons": {
"40": "icon/icon_40.png",
"48": "icon/icon_48.png",
"128": "icon/icon_128.png",
"176": "icon/icon_176.png",
"512": "icon/icon_512.png"
},
"default_locale": "en",
"name": "Universal Bypass",
"description": "__MSG_appDesc__",
"homepage_url": "https://universal-bypass.org/",
"version": "9.0",
"author": "Tim \"timmyRS\" Speckhals",
"incognito": "split",
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"browser_action": {
"default_icon": {
"40": "icon/icon_40.png",
"48": "icon/icon_48.png",
"128": "icon/icon_128.png",
"176": "icon/icon_176.png",
"512": "icon/icon_512.png"
},
"default_popup": "html/options.html"
},
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"run_at": "document_start"
}
],
"browser_specific_settings": {
"gecko": {
"id": "dev@universal-bypass.org"
}
},
"web_accessible_resources": [
"html/before-navigate.html",
"html/blocked.html",
"html/crowd-bypassed.html",
"html/firstrun.html",
"html/firstrun-noscript.html"
]
}