-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
56 lines (56 loc) · 1.42 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
{
"manifest_version": 3,
"name": "Dutch Waze Kit",
"author": "Musa Semou",
"version": "1.4.2",
"description": "Verbeteringen voor WME, op maat gemaakt voor de Nederlandse Waze community.",
"permissions": [
"contextMenus"
],
"host_permissions": [
"https://*.waze.com/*"
],
"background": {
"scripts": ["extension.js"]
},
"icons": {
"16": "img/[email protected]",
"48": "img/[email protected]",
"128": "img/[email protected]"
},
"web_accessible_resources": [
{
"resources": ["img/*"],
"matches": ["*://*/*"]
}
],
"content_scripts": [
{
"matches": ["https://*.waze.com/*editor*"],
"css": [
"lib/css/vanillatoasts.css",
"lib/css/dwk.css"
],
"js": [
"browser-fallback.js",
"lib/ClassObserver.js",
"lib/CreationObserver.js",
"lib/proj4.js",
"lib/vanillatoasts.js",
"features/dwk-preferences.js",
"features/open-in-bag.js",
"features/open-in-ruimtelijke-plannen.js",
"features/open-in-satelliet-data-portaal.js",
"features/open-in-google-maps.js",
"features/open-in-melvin.js",
"features/open-in-mapillary.js",
"features/open-in-wegstatus.js",
"features/open-closure-in-melvin.js",
"features/more-info-addons.js",
"features/waze-logo-nl.js",
"features/look-up-address.js",
"dutch-waze-kit.js"
]
}
]
}