paywallr/manifest.json

135 lines
3.7 KiB
JSON
Raw Normal View History

{
"manifest_version": 2,
2020-03-07 20:04:24 +01:00
"name": "Unpaywall",
2020-03-15 17:17:17 +01:00
"version": "2.0",
2020-03-07 20:04:24 +01:00
"author": "tobimori",
2020-03-14 22:24:58 +01:00
"description": "__MSG_manifestDescription__",
"default_locale": "en",
2020-03-07 19:07:29 +01:00
"icons": {
2020-03-07 19:33:50 +01:00
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
2020-03-07 19:07:29 +01:00
},
2020-03-12 19:11:16 +01:00
2020-03-14 23:38:01 +01:00
"background": {
"scripts": [
"lib.js",
"settingslib.js",
"components/tinypass.js",
"components/zettgreen.js",
"components/laterpay/blocker.js"
]
2020-03-15 15:53:44 +01:00
},
2020-03-16 14:59:29 +01:00
2020-03-15 15:53:44 +01:00
"browser_action": {
"default_icon": {
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"default_title": "Unpaywall"
},
2020-03-15 16:14:16 +01:00
2020-03-14 23:38:01 +01:00
"permissions": [
"<all_urls>",
2020-03-15 16:14:16 +01:00
"activeTab",
2020-03-15 21:19:08 +01:00
"cookies",
"storage",
2020-03-14 23:38:01 +01:00
"webRequest",
"webRequestBlocking"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["browseraction.js"],
"run_at": "document_start"
}, {
"matches": [
"*://*.waz-online.de/*",
"*://*.cellesche-zeitung.de/*",
"*://*.dnn.de/*",
"*://*.goettinger-tageblatt.de/*",
"*://*.haz.de/*",
"*://*.kn-online.de/*",
"*://*.lvz.de/*",
"*://*.ln-online.de/*",
"*://*.maz-online.de/*",
"*://*.neuepresse.de/*",
"*://*.ostsee-zeitung.de/*",
"*://*.paz-online.de/*",
"*://*.sn-online.de/*"],
2020-03-16 14:59:29 +01:00
"js": ["lib.js", "components/madsack.js"],
"run_at": "document_end"
}, {
"matches": [
"*://*.ksta.de/*",
"*://*.rundschau-online.de/*",
"*://*.mz-web.de/*"
],
2020-03-16 14:59:29 +01:00
"js": ["lib.js", "components/dumont.js"],
"run_at": "document_idle"
}, {
"matches": [
"*://*.saarbruecker-zeitung.de/*"
],
2020-03-16 14:59:29 +01:00
"js": ["lib.js", "components/saarbruecker-zeitung.js"],
"run_at": "document_idle"
}, {
"matches": [
"*://*.allgemeine-zeitung.de/*",
"*://*.buerstaedter-zeitung.de/*",
"*://*.echo-online.de/*",
"*://*.mittelhessen.de/*",
"*://*.giessener-anzeiger.de/*",
"*://*.hochheimer-zeitung.de/*",
"*://*.hofheimer-zeitung.de/*",
"*://*.wiesbadener-kurier.de/*",
"*://*.kreis-anzeiger.de/*",
"*://*.lampertheimer-zeitung.de/*",
"*://*.lauterbacher-anzeiger.de/*",
"*://*.main-spitze.de/*",
"*://*.oberhessische-zeitung.de/*",
"*://*.usinger-anzeiger.de/*",
"*://*.wormser-zeitung.de/*"
],
"js": ["lib.js", "components/laterpay/vrm.js"],
"run_at": "document_start"
2020-03-12 19:11:16 +01:00
}, {
"matches": [
2020-03-17 13:47:52 +01:00
"*://*.nahverkehrhamburg.de/*",
"*://*.nrwz.de/*"
2020-03-12 19:11:16 +01:00
],
2020-03-17 13:47:52 +01:00
"js": ["lib.js", "components/steady-cleanslate.js"],
2020-03-14 20:33:36 +01:00
"run_at": "document_idle"
}, {
"matches": [
2020-03-14 21:54:09 +01:00
"*://*.ruhrnachrichten.de/*",
"*://*.hellwegeranzeiger.de/*",
"*://*.dorstenerzeitung.de/*",
"*://*.muensterlandzeitung.de/*",
"*://*.halternerzeitung.de/*"
2020-03-14 20:33:36 +01:00
],
2020-03-16 14:59:29 +01:00
"js": ["lib.js", "components/lensingmedia.js"],
2020-03-14 20:53:55 +01:00
"run_at": "document_end"
}, {
"matches": [
"*://*.bergedorfer-zeitung.de/*"
],
"js": ["lib.js", "components/laterpay/deobfuscator.js"],
"run_at": "document_end"
}
]
}