Universal-Bypass/manifest.json

47 lines
896 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",
2018-05-28 14:44:43 +02:00
"name": "Universal Bypass",
2018-03-24 19:30:18 +01:00
"description": "__MSG_appDesc__",
"homepage_url": "https://universal-bypass.org/",
2018-07-04 02:30:44 +02:00
"version": "5.1.1",
2018-03-24 19:30:18 +01:00
"author": "timmyRS",
"minimum_chrome_version": "41",
2018-06-15 21:35:23 +02:00
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
2018-03-26 10:37:43 +02:00
"permissions": [
2018-07-03 10:18:59 +02:00
"storage",
"webRequest",
"webRequestBlocking",
2018-07-03 23:52:38 +02:00
"<all_urls>"
2018-03-26 10:37:43 +02:00
],
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-04-02 19:17:21 +02:00
"scripts": ["background.js"],
2018-07-03 10:18:59 +02:00
"persistent": true
2018-03-24 19:30:18 +01:00
},
"content_scripts": [
{
"matches": ["*://*/*"],
2018-03-26 10:37:43 +02:00
"js": [
2018-04-02 19:17:21 +02:00
"content_script.js"
2018-03-26 10:37:43 +02:00
],
2018-03-24 19:30:18 +01:00
"run_at": "document_start"
}
]
}