-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
47 lines (46 loc) · 1.13 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
{
"name": "hulunote",
"description": "葫芦笔记•世界上最聪明的人都在用的笔记",
"version": "1.0.0",
"manifest_version": 2,
"icons": {
"16":"logo-16.png",
"48":"logoBig.png"
},
"browser_action": {
"default_popup": "html/popup.html",
"default_title": "hulunote",
"default_icon": {
"16": "logo-16.png"
}
},
"permissions": [
"https://www.hulunote.com/*/",
"tabs",
"contextMenus",
"storage",
"notifications"
],
"background": {
"page": "html/background.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Opens html/index.html"
}
},
"options_page": "html/options.html",
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["target/core.js"],
"run_at": "document_start",
"all_frames": true
}],
"omnibox": {
"keyword": "memo"
}
}