-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (53 loc) · 1.25 KB
/
manifest.json
File metadata and controls
53 lines (53 loc) · 1.25 KB
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
{
"manifest_version": 3,
"name": "ROVAS Connector for iD Editor",
"version": "1.80",
"description": "Tracks editing session in OpenStreetMap and OpenHistoricalMap iD and sends working reports to ROVAS App.",
"permissions": [
"storage",
"webRequest"
],
"host_permissions": [
"https://www.openstreetmap.org/edit*",
"https://api.openstreetmap.org/*",
"https://www.openhistoricalmap.org/*",
"https://api.openhistoricalmap.org/*",
"https://rovas.app/*",
"https://dev.rovas.app/*",
"https://overpass-api.de/*",
"https://neofund.sk/*",
"https://rapideditor.org/edit*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png"
}
},
"content_scripts": [
{
"matches": [
"https://www.openstreetmap.org/edit*",
"https://www.openhistoricalmap.org/edit*",
"https://rapideditor.org/edit*"
],
"js": ["content.js"]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png"
},
"web_accessible_resources": [
{
"resources": [
"locales/*.json"
],
"matches": ["<all_urls>"]
}
]
}