-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
47 lines (40 loc) · 1.05 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
{
"description": "Collect results while using search engines for later analysis",
"manifest_version": 2,
"name": "Zoekplaatje",
"version": "1.9.5",
"homepage_url": "https://github.com/digitalmethodsinitiative/zoekplaatje",
"browser_specific_settings": {
"gecko": {
"update_url": "https://extensions.digitalmethods.net/updates.json"
}
},
"icons": {
"96": "images/icon-96.png"
},
"browser_action": {
"default_icon": "images/icon-96.png",
"default_title": "Zoekplaatje"
},
"permissions": [
"webRequest", "webRequestBlocking", "webNavigation", "<all_urls>", "storage", "downloads", "activeTab", "tabs",
"unlimitedStorage"
],
"incognito": "not_allowed",
"background": {
"scripts": [
"inc/dexie.js",
"inc/he.js",
"inc/moment.js",
"js/background.js",
"modules/google.js",
"modules/baidu.js",
"modules/bing.js",
"modules/duckduckgo.js",
"modules/najdi.si.js",
"modules/marginalia.js",
"modules/seznam.js",
"modules/yandex.js"
]
}
}