-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest_template.json
46 lines (46 loc) · 1.06 KB
/
manifest_template.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
{
"name": "ScrollMaps",
"version": null,
"manifest_version": 3,
"minimum_chrome_version": "93",
"description": "Allow you to use two finger scroll on your Mac trackpad in online maps.",
"browser_specific_settings": {
"gecko": {
"id": "{c0dd22ca-492e-4bcf-ab68-53c6633892fe}",
"strict_min_version": "109.0"
}
},
"background": {
"scripts": ["background.min.js"]
},
"web_accessible_resources": [{
"resources": ["images/permission_icon.png"],
"matches": ["<all_urls>"]
}],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": true
},
"icons": {
"16": "images/maps_16.png",
"48": "images/maps_48.png",
"128": "images/maps_128.png"
},
"action": {},
"permissions": [
"storage",
"scripting",
"activeTab"
],
"host_permissions": [
"*://maps.google.com/",
"*://www.google.com/maps/",
"<%= all_google_maps_urls %>"
],
"optional_permissions": [
"<all_urls>"
]
}