forked from rohanb10/snoozz-tab-snoozing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
73 lines (66 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "Snoozz - Snooze Tabs & Windows for later",
"short_name": "Snoozz",
"description": "Declutter your browser by snoozing tabs and windows until you actually need them.",
"version": "2.5.1",
"icons": {
"128": "icons/ext-icon-128.png",
"48": "icons/ext-icon-48.png",
"32": "icons/ext-icon-32.png",
"16": "icons/ext-icon-16.png"
},
"manifest_version": 2,
"browser_action": {
"default_popup": "html/popup.html"
},
"author": "Rohan Bhansali",
"options_ui": {
"page": "html/settings.html",
"open_in_tab": true
},
"background": {
"scripts": ["scripts/dayjs.min.js", "scripts/common.js", "scripts/poll.js", "scripts/background.js"]
},
"offline_enabled": true,
"permissions": ["alarms", "contextMenus", "idle", "notifications", "storage", "tabs"],
"web_accessible_resources": ["html/settings.html"],
"content_scripts": [{
"matches": ["https://*.snoozz.me/*"],
"js": ["scripts/snoozz.me.js"]
}],
"commands": {
"nap-room": {
"description": "Show me my sleeping tabs"
},
"startup": {
"description": "Snooze until the next time you launch your browser"
},
"in-an-hour": {
"description": "Snooze for an hour"
},
"today-morning": {
"description": "Snooze till today morning"
},
"today-evening": {
"description": "Snooze till today evening"
},
"tom-morning": {
"description": "Snooze till tomorrow morning"
},
"tom-evening": {
"description": "Snooze till tomorrow evening"
},
"weekend": {
"description": "Snooze till this Saturday"
},
"monday": {
"description": "Snooze till next Monday"
},
"week": {
"description": "Snooze till one week from now"
},
"month": {
"description": "Snooze till one month from now"
}
}
}