-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanifest.json
60 lines (49 loc) · 1.53 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
{
"manifest_version": 2,
"name": "Bookmark search plus 2",
"short_name": "BSP2",
"description": "Displays and filters bookmarks on search string, show parent folders.",
"author": "aaFn",
"version": "2.0.133",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "58.0"
}
},
"icons": {
"38": "icons/star2.png"
},
"background": {
"scripts": ["sidebar/OptionDesc.js", "sidebar/libstore.js", "sidebar/libimage.js", "sidebar/BookmarkNode.js",
"sidebar/HistoryNode.js", "sidebar/CreateHistQueue.js", "sidebar/bookmarkutils.js", "sidebar/favicon.js",
"sidebar/contextmenu.js", "sidebar/background.js"
]
},
"sidebar_action": {
"default_icon": "icons/star2.png",
"default_title" : "Bookmark search plus 2",
"default_panel": "sidebar/panel.html"
},
"browser_action": {
"browser_style": false,
"default_icon": "icons/star2.png",
"default_title": "Bookmark search plus 2"
},
"permissions": ["<all_urls>", "storage", "unlimitedStorage", "tabs", "bookmarks", "history",
"browserSettings", "topSites", "menus", "menus.overrideContext", "theme"],
"options_ui": {
"page": "sidebar/options.html",
"browser_style": true
},
"web_accessible_resources": ["icons/*.png", "sidebar/*.html*"],
"commands": {
"_execute_sidebar_action": {
"suggested_key": {
"default": "Ctrl+Q",
"linux": "Ctrl+Shift+B",
"mac": "Alt+B"
}
}
}
}