-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmanifest.json
46 lines (40 loc) · 992 Bytes
/
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
{
"manifest_version": 2,
"name": "Better Bookmark",
"description": "Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: cmd+b (win:ctrl+b)",
"version": "1.3.1",
"author": "Szymon Pilkowski",
"homepage_url": "https://github.com/ardcore/chrome-better-bookmark",
"default_locale": "en",
"background": {
"page": "init.html"
},
"icons": {
"16": "bookmark.png",
"48": "bookmark.png",
"128": "bookmark.png"
},
"browser_action": {
"default_icon": {
"19": "bookmark.png",
"38": "bookmark.png"
},
"default_title": "Better Bookmark Button",
"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"
]
}