-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest_v3.json
41 lines (41 loc) · 894 Bytes
/
manifest_v3.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
{
"manifest_version": 3,
"name": "Daily Tab",
"description": "Automatically opens tabs at a given time every day.",
"version": "1.2.0",
"permissions": [
"alarms", "storage", "tabs"
],
"homepage_url": "https://github.com/Suyooo/firefox-dailytab",
"icons": {
"48": "icon.svg",
"96": "icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "firefox-dailytab@suyo.be",
"strict_min_version": "101.0"
}
},
"background": {
"scripts": ["background.js"]
},
"action": {
"browser_style": true,
"default_title": "Daily Tab",
"default_popup": "tabs.html",
"default_icon": {
"16": "icon.svg",
"32": "icon.svg"
},
"theme_icons": [{
"light": "icon-dark.svg",
"dark": "icon.svg",
"size": 16
}, {
"light": "icon-dark.svg",
"dark": "icon.svg",
"size": 32
}]
}
}