-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
66 lines (66 loc) · 1.64 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
{
"name": "Weekly Sticker",
"version": "1.0",
"manifest_version": 2,
"content_security_policy":"script-src 'self' https://cdnjs.cloudflare.com; object-src 'self'",
"permissions": ["management", "contextMenus", "tabs", "bookmarks", "storage", "http://*/*",
"https://*/*"
],
"description": "Weekly Sticker",
"icons": {
"16": "Sticker16.png",
"48": "Sticker48.png",
"128": "Sticker128.png"
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["content.js"]
}
],
"background": {
"persistent": false,
"page": "background.html"
},
"browser_action": {
"default_title": "Weekly Sticker",
"default_popup": "popup.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Alt+P",
"mac": "Command+P",
"chromeos": "Alt+P",
"linux": "Alt+P"
}
},
"add-plan-today": {
"suggested_key": {
"windows": "Ctrl+Y",
"mac": "Command+Y",
"chromeos": "Ctrl+Y",
"linux": "Ctrl+Y"
},
"description": "Add Plan for Today"
},
"save-temp-urls": {
"suggested_key": {
"windows": "Alt+X",
"mac": "Command+X",
"chromeos": "Alt+X",
"linux": "Alt+X"
},
"description": "Save Opened Tabs for Future Reference"
},
"recover-temp-urls": {
"suggested_key": {
"windows": "Alt+V",
"mac": "Command+V",
"chromeos": "Alt+V",
"linux": "Alt+V"
},
"description": "Recover Saved Temporary Tabs for Reference"
}
}
}