-
Notifications
You must be signed in to change notification settings - Fork 8
/
manifest.json
38 lines (38 loc) · 914 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
{
"name": "__MSG_title__",
"description": "__MSG_description__",
"version": "0.1.6",
"manifest_version": 2,
"permissions" : ["contextMenus", "tabs"],
"background": {
"scripts": ["context.js"]
},
"content_scripts":[{
"matches":["http://*/*", "http://*/", "https://*/*", "https://*/"],
"js":["highLight.js"],
"css":["highlight.css"],
"all_frames": true
}],
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"browser_action": {
"default_icon": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"default_popup": "popup.html"
},
"default_locale": "zh_CN",
"commands" : {
"highlight" : {
"suggested_key" : {
"default" : "Alt+S"
} ,
"description" : "高亮页面内容"
}
}
}