-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
49 lines (49 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
49
{
"manifest_version": 2,
"name": "Send to Todoist",
"description": "Quickly create tasks in Todoist",
"version": "1.11.1",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"browser_action": {
"browser_style": true,
"default_title": "Send to Todoist",
"default_popup": "popup/index.html",
"default_icon": {
"48": "icons/SendToTodoist.svg",
"96": "icons/SendToTodoist.svg"
}
},
"background": {
"scripts": [
"background_scripts/background.js"
]
},
"commands": {
"save-page": {
"suggested_key": {
"default": "Ctrl+Shift+I"
},
"description": "Create an Inbox task for the current page"
}
},
"options_ui": {
"page": "options/index.html",
"open_in_tab": true,
"browser_style": true
},
"icons": {
"48": "icons/SendToTodoist.svg",
"96": "icons/SendToTodoist.svg"
},
"permissions": [
"activeTab",
"contextMenus",
"menus",
"notifications",
"storage"
]
}