-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
41 lines (41 loc) · 985 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
41
{
"name":"chromeCrawl",
"description":"Crawl website page content information",
"version":"1.1",
"manifest_version":2,
"options_page": "options.html",
"browser_action":{
"default_popup":"popup.html",
" default_title":"抓取页面所有内容便利工具",
"default_icon":{
"16":"images/48.png",
"32":"images/32.png",
"48":"images/48.png",
"128":"images/128.jpg"
}
},
"commands":{
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Opens hello.html"
}
},
"background":{
"scripts":["background.js"],
"permission":false
},
"content_scripts":[{
"js":["content_script.js"],
"matches":["*://*/*"]
}],
"permissions":["tabs","storage","activeTab","*://*/*","webRequest","webRequestBlocking","webNavigation"],
"icons": {
"16":"images/16.png",
"32":"images/32.png",
"48":"images/48.png",
"128":"images/128.jpg"
}
}