forked from csrdelft/sponsorextensie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (48 loc) · 1.01 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
{
"manifest_version": 3,
"name": "C.S.V. Alpha Sponsor Extensie",
"description": "Wordt eraan herinnerd om relevante websites via gesponsorde C.S.V. Alpha links te bezoeken",
"author": "ict@csvalpha.nl",
"homepage_url": "https://csvalpha.nl/",
"version": "4.0",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": [
"alarms",
"storage",
"tabs",
"notifications"
],
"content_scripts": [
{
"js": [
"src/installed.js"
],
"matches": [
"*://*.csvalpha.nl/*"
]
}
],
"background": {
"service_worker": "src/background_service.js",
"scripts": [
"src/background_service.js"
],
"type": "module"
},
"action": {
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png"
}
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": false
}
}