-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
47 lines (42 loc) · 1.04 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
{
"manifest_version": 3,
"name": "Services Progress Result Collector",
"version": "1.0",
"permissions": ["webRequest", "storage"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://monitor.mozilla.org/user/dashboard"],
"js": ["content-scripts/mozilla-monitor.js"]
}
],
"host_permissions": [
"https://app.optery.com/",
"https://optery.com/",
"https://api.optery.com/",
"https://app.dataseal.io/",
"https://dataseal.io/",
"https://api.dataseal.io/",
"https://my.kanary.com/",
"https://incogni.com/",
"https://api.incogni.com/",
"https://monitor.mozilla.org/"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/send_16.png",
"32": "images/send_32.png",
"48": "images/send_48.png",
"128": "images/send_128.png"
}
},
"icons": {
"16": "images/send_16.png",
"32": "images/send_32.png",
"48": "images/send_48.png",
"128": "images/send_128.png"
}
}