-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
manifest.json
144 lines (144 loc) · 4.46 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"manifest_version": 2,
"name": "BibBot",
"version": "0.38.1",
"description": "Vereinfacht die Suche nach Artikeln in der Bibliothek",
"icons": {
"48": "icons/bibbot-48.png",
"96": "icons/bibbot-96.png",
"128": "icons/bibbot-128.png",
"256": "icons/bibbot-256.png",
"512": "icons/bibbot-512.png",
"1024": "icons/bibbot-1024.png"
},
"permissions": [
"activeTab",
"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/*",
"https://*.stadtbibliothek.leipzig.de/*",
"https://*.ezp-lhd.itk-rheinland.de/*",
"https://*.ub-proxy.fernuni-hagen.de/*",
"https://*.ezproxy.stadt-koeln.de/*",
"https://*.stb-aachen.idm.oclc.org/*",
"https://login.slub-dresden.de/*",
"https://www-wiso-net-de.wwwdb.dbod.de/*",
"https://*.bsb-muenchen.de/*",
"https://go.openathens.net/*",
"https://katalog.dortmund.de/*",
"https://advance-lexis-com.eu1.proxy.openathens.net/*",
"https://*.bonn.idm.oclc.org/*",
"https://online-service2.nuernberg.de/*",
"https://*.webopac.wuppertal.de:1443/*"
],
"background": {
"scripts": [
"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://www.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/*",
"https://www.stimme.de/*",
"https://kurier.at/*",
"https://freizeit.at/*",
"https://www.diepresse.com/*",
"https://www.sn.at/*",
"https://www.kleinezeitung.at/*",
"https://www.vn.at/*",
"https://www.thueringer-allgemeine.de/*",
"https://www.mopo.de/*",
"https://www.saechsische.de/*",
"https://www.freiepresse.de/*",
"https://www.haz.de/*",
"https://www.lvz.de/*",
"https://www.dnn.de/*",
"https://www.swp.de/*",
"https://www.ruhrnachrichten.de/*",
"https://www.businessinsider.de/*",
"https://www.badische-zeitung.de/*",
"https://www.stern.de/*",
"https://www.mittelbayerische.de/*",
"https://www.tagblatt.de/*",
"https://www.mz.de/*",
"https://www.capital.de/*",
"https://www.iz.de/*",
"https://www.shz.de/*",
"https://www.aerztezeitung.de/*",
"https://www.geo.de/*",
"https://www.nzz.ch/*",
"https://www.manager-magazin.de/*",
"https://www.nwzonline.de/*",
"https://www.saarbruecker-zeitung.de/*",
"https://www.idowa.de/*",
"https://www.aachener-zeitung.de/*",
"https://www.nn.de/*"
],
"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/bibbot-mono-19.png",
"38": "icons/bibbot-mono-38.png",
"48": "icons/bibbot-mono-48.png",
"96": "icons/bibbot-mono-96.png",
"128": "icons/bibbot-mono-128.png",
"256": "icons/bibbot-mono-256.png",
"512": "icons/bibbot-mono-512.png",
"1024": "icons/bibbot-mono-1024.png"
},
"default_popup": "popup/popup.html",
"default_title": "BibBot"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "58.0"
}
}
}