47 lines
896 B
JSON
47 lines
896 B
JSON
{
|
|
"manifest_version": 2,
|
|
"icons": {
|
|
"128": "icon/icon_128.png",
|
|
"256": "icon/icon_256.png",
|
|
"512": "icon/icon_512.png"
|
|
},
|
|
"default_locale": "en",
|
|
"name": "Universal Bypass",
|
|
"description": "__MSG_appDesc__",
|
|
"homepage_url": "https://universal-bypass.org/",
|
|
"version": "5.2.3",
|
|
"author": "timmyRS",
|
|
"minimum_chrome_version": "41",
|
|
"options_ui": {
|
|
"page": "html/options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"permissions": [
|
|
"storage",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"<all_urls>"
|
|
],
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"128": "icon/icon_128.png",
|
|
"256": "icon/icon_256.png",
|
|
"512": "icon/icon_512.png"
|
|
},
|
|
"default_popup": "html/popup.html"
|
|
},
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": true
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*/*"],
|
|
"js": [
|
|
"content_script.js"
|
|
],
|
|
"run_at": "document_start"
|
|
}
|
|
]
|
|
}
|