-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
66 lines (63 loc) · 1.29 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
{
"manifest_version": 2,
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "0.0.1",
"default_locale": "da",
"icons": {
"96": "images/icon96.png"
},
"author": "GrammarSoft ApS",
"homepage_url": "https://retmig.dk/",
"offline_enabled": false,
"browser_action": {
"default_title": "__MSG_extTooltip__",
"default_popup": "html/popup.html"
},
"incognito": "spanning",
"permissions": [
"https://gramtrans.com/*",
"https://retmig.dk/*",
"https://kommaer.dk/*",
"activeTab",
"storage"
],
"background": {
"scripts": ["js/background.js"],
"persistent": false
},
"web_accessible_resources": [
"images/*",
"css/*",
"js/*",
"vendor/*"
],
"content_scripts": [
{
"matches": ["http://*.google.com/*", "https://*.google.com/*"],
"run_at": "document_idle",
"js": [
"js/google.js"
]
},
{
"matches": ["http://*/*", "https://*/*", "file:///*"],
"run_at": "document_idle",
"css": [
"vendor/featherlight.min.css",
"css/featherlight.css"
],
"js": [
"vendor/murmurhash3js.min.js",
"vendor/jquery.min.js",
"vendor/featherlight.min.js",
"vendor/popper.min.js",
"vendor/bootstrap.min.js",
"js/mark-types.js",
"js/shared-inject.js",
"js/shared.js",
"js/contentscript.js"
]
}
]
}