-
Notifications
You must be signed in to change notification settings - Fork 14
/
manifest.json
80 lines (80 loc) · 2.09 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
74
75
76
77
78
79
80
{
"name": "StickyNotes",
"version": "1.1.8.0",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"permissions": ["contextMenus",
"storage",
"notifications",
"tabs",
"activeTab",
"*://stickynotes.kumabook.tokyo/*"
],
"background": {
"scripts": ["background/bundle.js"]
},
"default_locale": "en",
"content_scripts": [
{
"matches": ["*://*/*"],
"match_about_blank": true,
"css": ["content_scripts/sticky-view.css"],
"js": ["content_scripts/bundle.js"]
}
],
"options_ui": {
"page": "options_ui/index.html"
},
"browser_action": {
"browser_style": true,
"default_icon": "icons/icon-32.png",
"default_title": "StickyNotes",
"default_popup": "popup/index.html"
},
"sidebar_action": {
"default_icon": "icons/icon-32.png",
"default_title" : "StickyNotes",
"default_panel": "sidebar/index.html"
},
"commands": {
"_execute_sidebar_action": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "MacCtrl+Shift+S"
},
"description": "Show stickies on sidebar"
},
"create_sticky": {
"suggested_key": {
"default": "Ctrl+Shift+C",
"mac": "MacCtrl+Shift+C"
},
"description": "Create a sticky in active tab"
},
"toggle_stickies": {
"suggested_key": {
"default": "Ctrl+Q",
"mac": "MacCtrl+Q"
},
"description": "Toggle visiblities of stickies in active tab"
}
},
"web_accessible_resources": [
"content_scripts/delete.png",
"content_scripts/delete-hover.png",
"content_scripts/menu.png",
"content_scripts/menu-hover.png",
"content_scripts/edit-tag.png",
"content_scripts/edit-tag-hover.png",
"content_scripts/minimize.png",
"content_scripts/minimize-hover.png",
"content_scripts/color.png",
"content_scripts/page-option.png",
"content_scripts/back.png",
"content_scripts/close.png"
]
}