-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
47 lines (47 loc) · 1015 Bytes
/
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
{
"manifest_version": 2,
"name": "Tab Snooze",
"version": "0.2.0",
"author": "Ramkumar K R",
"description":"Snooze tabs to open at a specific time",
"permissions": [
"tabs",
"notifications",
"alarms",
"storage",
"cookies"
],
"browser_action": {
"theme_icons": [
{
"light": "resources/icon-dark.png",
"dark": "resources/icon.png",
"size": 48
}
],
"default_title": "Snooze",
"default_popup": "popup/index.html",
"browser_style": true
},
"applications": {
"gecko": {
"id": "{10d756ed-15e2-49f2-bad0-59bb8c19296a}",
"strict_min_version": "57.0"
}
},
"sidebar_action": {
"default_icon": "resources/icon.png",
"default_title": "Snoozed Tabs",
"default_panel": "listing/index.html?sidebar=true"
},
"background": {
"scripts": ["js/background.js"]
},
"icons": {
"48": "resources/icon.png"
},
"options_ui": {
"page": "options/index.html",
"open_in_tab": true
}
}