forked from stefanw/bibbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
71 lines (70 loc) · 1.74 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"manifest_version": 2,
"name": "VÖBBot",
"version": "0.10",
"description": "Entfernt die Paywall in Artikeln deutscher Online-Medien via VÖBB",
"icons": {
"48": "icons/voebbot48.png",
"96": "icons/voebbot96.png"
},
"permissions": [
"tabs",
"storage",
"https://www.munzinger.de/*",
"https://www.voebb.de/*",
"https://bib-voebb.genios.de/*"
],
"background": {
"scripts": [
"lib/browser-polyfill.js",
"build/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https://www.spiegel.de/*",
"https://magazin.spiegel.de/*",
"https://www.zeit.de/*",
"https://www.wiwo.de/*",
"https://www.welt.de/*",
"https://plus.tagesspiegel.de/*",
"https://www.sueddeutsche.de/*",
"https://www.handelsblatt.com/*",
"https://www.berliner-zeitung.de/*",
"https://www.morgenpost.de/*",
"https://www.nordkurier.de/*",
"https://www.abendblatt.de/*",
"https://www.moz.de/*",
"https://www.noz.de/*",
"https://www.waz.de/*"
],
"js": [
"lib/browser-polyfill.js",
"build/content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"options_ui": {
"open_in_tab": true,
"page": "options/options.html"
},
"browser_action": {
"default_icon": {
"19": "icons/voebbot19.png",
"38": "icons/voebbot38.png"
},
"default_popup": "popup/popup.html",
"default_title": "VOEBBot"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0",
"update_url": "https://stefanw.github.io/voebbot/updates.json"
}
}
}