forked from digitaluzu/nimble-bookmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (43 loc) · 1.02 KB
/
manifest.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"version": "1.0.2",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
},
"default_title": "__MSG_extName__",
"default_popup": "popup.html"
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"background": {
"scripts": ["background.js"]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+B",
"mac": "Command+B",
"chromeos": "Ctrl+B",
"linux": "Ctrl+B"
}
}
},
"permissions": [
"chrome://favicon/",
"bookmarks",
"tabs"
]
}