bypass-paywalls-firefox/manifest.json

48 lines
846 B
JSON
Raw Normal View History

2017-07-08 10:40:29 -07:00
{
"background": {
"scripts": ["background.js"]
},
2018-06-30 12:48:40 -07:00
"content_scripts": [
{
"matches": ["*://*.bizjournals.com/*", "*://*.businessinsider.com/*", "*://*.haaretz.co.il/*"],
2018-06-30 12:48:40 -07:00
"js": ["contentScript.js"]
}
],
2017-07-08 10:40:29 -07:00
"applications": {
2018-06-30 12:48:40 -07:00
"gecko": {
"id": "iamadamdev@hotmail.com"
}
2017-07-08 10:40:29 -07:00
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
2018-06-30 12:48:40 -07:00
"128": "bypass.png"
},
"theme_icons": [
{
"light": "bypass-dark.png",
"dark": "bypass.png",
"size": 128
}
]
2017-07-08 10:40:29 -07:00
},
"description": "Bypass News Sites' Paywalls",
"icons": {
"128": "bypass.png"
},
"manifest_version": 2,
"name": "Bypass Paywalls",
"short_name": "Bypass Paywall",
"options_ui": {
"page": "options.html"
},
2018-06-30 12:48:40 -07:00
"permissions": [
"cookies",
"<all_urls>",
"storage",
"webRequest",
"webRequestBlocking"
],
2018-10-06 22:18:34 -07:00
"version": "1.3.11"
2017-07-08 10:40:29 -07:00
}