forked from stefanw/bibbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
89 lines (88 loc) · 2.37 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"manifest_version": 2,
"name": "VÖBBot",
"version": "0.19.0",
"description": "Vereinfacht die Suche nach Artikeln in der Bibliothek",
"icons": {
"48": "icons/voebbot48.png",
"96": "icons/voebbot96.png"
},
"permissions": [
"tabs",
"storage",
"https://*.genios.de/*"
],
"optional_permissions": [
"https://www.munzinger.de/*",
"https://www.voebb.de/*",
"https://www.wiso-net.de/*",
"https://*.stbhannover.idm.oclc.org/*",
"https://*.han.landesbibliothek.at/*"
],
"background": {
"scripts": [
"lib/browser-polyfill.js",
"build/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https://www.spiegel.de/*",
"https://www.zeit.de/*",
"https://www.wiwo.de/*",
"https://www.welt.de/*",
"https://plus.tagesspiegel.de/*",
"https://www.sueddeutsche.de/*",
"https://sz-magazin.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/*",
"https://www.heise.de/*",
"https://www.maz-online.de/*",
"https://www.lr-online.de/*",
"https://www.nachrichten.at/*",
"https://ga.de/*",
"https://www.ksta.de/*",
"https://www.rundschau-online.de/*",
"https://rp-online.de/*",
"https://www.tagesanzeiger.ch/*",
"https://www.falter.at/*",
"https://www.stuttgarter-zeitung.de/*",
"https://www.stuttgarter-nachrichten.de/*",
"https://www.ostsee-zeitung.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": "voebbot@stefanwehrmeyer.com",
"strict_min_version": "57.0",
"update_url": "https://stefanw.github.io/voebbot/updates.json"
}
}
}