-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (45 loc) · 1.13 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
{
"manifest_version": 3,
"name": "Freemap.sk for Geocaching",
"short_name": "fm4gc",
"version": "1.1",
"author": "Martin Ždila (Freemap Slovakia)",
"description": "Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.",
"browser_specific_settings": {
"gecko": {
"id": "{bc724bb7-15a3-426d-88cc-c0800db2d14d}"
}
},
"icons": {
"48": "icons/icon-48.png"
},
"content_scripts": [
{
"matches": ["https://www.geocaching.com/map/"],
"js": ["map.js"],
"run_at": "document_start"
},
{
"matches": ["https://www.geocaching.com/live/play/*"],
"js": ["play_map.js"],
"css": ["play_map.css"],
"run_at": "document_start"
},
{
"matches": ["https://www.geocaching.com/geocache/*"],
"js": ["geocache.js"],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"common-injected.js",
"map-injected.js",
"play_map-injected.js",
"geocache-injected.js"
],
"matches": ["<all_urls>"]
}
]
}