bypass-paywalls-firefox/manifest.json

33 lines
677 B
JSON
Raw Normal View History

2017-07-08 10:40:29 -07:00
{
"background": {
"scripts": ["background.js"]
},
"applications": {
"gecko": {
"id": "iamadamdev@hotmail.com"
}
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"128": "bypass.png"
2018-04-05 23:22:58 -07:00
},
"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"
},
"permissions": [ "cookies", "<all_urls>", "storage", "webRequest", "webRequestBlocking"],
2018-04-05 23:22:58 -07:00
"version": "1.2.0"
2017-07-08 10:40:29 -07:00
}