forked from minhanhhere/chrome-faster-bookmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 1.1 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
{
"author": "Dmytro Prokopenko",
"background": {
"service_worker": "init.js"
},
"action": {
"default_icon": {
"19": "action.png",
"38": "action.png"
},
"default_popup": "background.html",
"default_title": "Faster Top Bookmark Button"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"chromeos": "Ctrl+B",
"default": "Ctrl+B",
"linux": "Ctrl+B",
"mac": "Command+B",
"windows": "Ctrl+B"
}
}
},
"description": "Easily add bookmarks to the top of any folder. Includes spotlight-like search with mouse/kb support. Default key: ⌘+b (win:ctrl+b).",
"homepage_url": "https://github.com/dmytro-pro/chrome-faster-bookmark-to-top",
"icons": {
"128": "bookmark.png",
"16": "bookmark.png",
"48": "bookmark.png"
},
"manifest_version": 3,
"name": "Faster Top Bookmark - Add Bookmark faster",
"permissions": [ "bookmarks", "tabs" ],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.0.2"
}