Universal-Bypass/manifest.json

45 lines
892 B
JSON
Raw Normal View History

2018-03-24 19:30:18 +01:00
{
"manifest_version": 2,
"icons": {
"128": "icon/icon_128.png",
"256": "icon/icon_256.png",
"512": "icon/icon_512.png"
},
"default_locale": "en",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"homepage_url": "https://universal-bypass.org/",
2018-03-26 17:00:26 +02:00
"version": "2.1.3",
2018-03-24 19:30:18 +01:00
"author": "timmyRS",
"minimum_chrome_version": "41",
2018-03-26 10:37:43 +02:00
"options_page": "html/options.html",
"permissions": [
"storage"
],
2018-03-24 19:30:18 +01:00
"browser_action": {
"default_icon": {
"128": "icon/icon_128.png",
"256": "icon/icon_256.png",
"512": "icon/icon_512.png"
},
2018-03-25 13:45:02 +02:00
"default_popup": "html/popup.html"
2018-03-24 19:30:18 +01:00
},
"background": {
2018-03-25 13:45:02 +02:00
"scripts": ["src/background.js"],
2018-03-24 19:30:18 +01:00
"persistent": false
},
"content_scripts": [
{
"matches": ["*://*/*"],
2018-03-26 10:37:43 +02:00
"js": [
"src/bypass_index.js",
"src/content_script.js"
],
2018-03-24 19:30:18 +01:00
"run_at": "document_start"
}
],
"web_accessible_resources": [
"bypasses/*.js"
]
}