forked from ardcore/chrome-better-bookmark
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
executable file
·43 lines (38 loc) · 1.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
{
"manifest_version": 2,
"name": "Tree First Bookmarks",
"description": "Save a bookmark to any sub-category found by the spotlight-like search. Press cmd+b and use a sub-tree, a breadcrumb, tooltips, etc.",
"version": "2.0.2.9",
"author": "Szymon Pilkowski, Dmitry Galakhov",
"homepage_url": "https://github.com/galakhov/tree-first-bookmarks",
"default_locale": "en",
"background": {
"page": "init.html",
"persistent": false
},
"icons": {
"16": "bookmark-icon-trees-128.png",
"48": "bookmark-icon-trees-128.png",
"128": "bookmark-icon-trees-128.png"
},
"browser_action": {
"default_icon": {
"19": "bookmark-icon-trees-128.png",
"38": "bookmark-icon-trees-128.png"
},
"default_title": "Tree First Bookmarks",
"default_popup": "background.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+B",
"windows": "Ctrl+B",
"mac": "Command+B",
"chromeos": "Ctrl+B",
"linux": "Ctrl+B"
}
}
},
"permissions": ["bookmarks", "tabs", "contextMenus"]
}