-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (39 loc) · 974 Bytes
/
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
{
"manifest_version": 2,
"name": "Husky - Next-Gen boookmark extension",
"description": "The easiest way to open your favourite bookmarks in chrome browser",
"version": "1.0.1",
"icons": {
"128": "icon.png"
},
"browser_action": {
"default_icon": {
"32": "icon.png"
},
"default_title": "husky bookmarks",
"default_popup": "index.html#popup"
},
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "<all_urls>"],
"js": ["contentScript.js"]
}
],
"web_accessible_resources": ["index.html", "static/js/*.chunk.js"],
"commands": {
"toggle-search-modal": {
"suggested_key": {
"default": "Ctrl+Shift+0",
"windows": "Ctrl+Shift+0",
"mac": "Command+Shift+0"
},
"description": "Toggle Search Modal",
"global": true
}
},
"permissions": ["bookmarks", "storage"]
}