-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json.all
58 lines (56 loc) · 1.38 KB
/
manifest.json.all
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
{
"manifest_version" : 2,
"name" : "Siderite's Bookmark Explorer",
"description" : "Navigate through bookmark folders on a single page",
"version" : "3.0.0",
"author" : "Siderite", //Edge
"permissions" : [
"tabs",
"activeTab",
"bookmarks",
"contextMenus",
"notifications",
"chrome://favicon/", //Chrome
"storage",
"unlimitedStorage" //Chrome
],
"browser_action" : { //page_action for Firefox for Android
"default_icon" : {
"19": "icon.png"
},
"default_popup" : "popup.html"
},
"background" : {
"scripts" : ["apiWrapper.js","bookmarkExplorer.js","background.js"],
"persistent" : false
},
"options_ui": {
"page": "settings.html",
"chrome_style": true
},
"commands" : {
"prevBookmark" : {
"suggested_key" : {
"default" : "Ctrl+Shift+K" //Ctrl+Shift+O for Firefox and Opera
},
"description" : "Navigate to previous bookmark in the folder"
},
"nextBookmark" : {
"suggested_key" : {
"default" : "Ctrl+Shift+L"
},
"description" : "Navigate to next bookmark in the folder"
},
"skipBookmark" : {
"description" : "Skip this bookmark in its folder"
}
},
"icons" : {
"16" : "icon.png",
"128" : "bigIcon.png"
},
"developer" : { //Firefox and Opera
"name" : "Siderite",
"url" : "https://siderite.blogspot.com/2016/03/my-first-chrome-extension-bookmark.html"
}
}