-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 1.37 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
{
"name": "flightdata",
"version": "1.0.1",
"manifest_version": 3,
"description": "Collection of web tools for flight simulation",
"author": "hazzuk",
"homepage_url": "https://github.com/elecordapp/flightdata-extension",
"permissions": [
"contextMenus",
"storage"
],
"host_permissions": [
"*://www.flightradar24.com/*",
"*://dispatch.simbrief.com/*"
],
"browser_specific_settings": {
"gecko": {
"id": "{703c1df4-4e8f-4ef4-93c3-2f608a346721}",
"strict_min_version": "109.0"
}
},
"background": {
"service_worker": "scripts/worker.js",
"page": "views/firefox.html"
},
"content_scripts": [
{
"matches": ["*://www.flightradar24.com/*"],
"js": ["scripts/content/flightradar.js"]
},
{
"matches": ["*://dispatch.simbrief.com/*"],
"js": ["scripts/content/simbrief.js"]
}
],
"action": {
"default_icon": {
"16": "media/icon/fd-16.png",
"32": "media/icon/fd-32.png",
"48": "media/icon/fd-48.png",
"128": "media/icon/fd-128.png"
}
},
"icons": {
"128": "media/icon/fd-128.png",
"48": "media/icon/fd-48.png",
"32": "media/icon/fd-32.png",
"16": "media/icon/fd-16.png"
}
}