bypass-paywalls-firefox/manifest.json

48 lines
997 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/*", "*://*.repubblica.it/*"],
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": {
2018-12-08 17:18:17 -08:00
"id": "bypasspaywalls@bypasspaywalls.weebly.com",
"update_url": "https://raw.githubusercontent.com/iamadamdev/bypass-paywalls-firefox/master/updates.json"
2018-06-30 12:48:40 -07:00
}
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"
],
2019-01-05 11:39:45 -08:00
"version": "1.4.7"
2018-12-08 17:18:17 -08:00
}