-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest-sidebar.json
More file actions
54 lines (54 loc) · 1.27 KB
/
manifest-sidebar.json
File metadata and controls
54 lines (54 loc) · 1.27 KB
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
{
"applications": {
"gecko": {
"id": "random-bookmark@stevenaleong.com",
"strict_min_version": "57.0"
}
},
"manifest_version": 2,
"name": "Random Bookmark",
"version": "2.2.0",
"description": "Load up a random bookmark! Features: Create groups of bookmark folders to randomize from, randomize a folder with right click, tab options, and more! Does not work with Firefox for Android unfortunately, add-ons are not able to access bookmarks on androids.",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"browser_action": {
"default_icon": {
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
},
"default_title": "Random Bookmark"
},
"background": {
"scripts": ["shared.js", "core.js", "background.js"]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+R"
}
}
},
"sidebar_action": {
"default_title": "Random Bookmark",
"default_panel": "sidebar/panel.html",
"default_icon": {
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
}
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": true
},
"permissions": [
"storage",
"bookmarks",
"tabs",
"menus",
"unlimitedStorage",
"notifications"
]
}