-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
45 lines (44 loc) · 963 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
42
43
44
45
{
"manifest_version": 2,
"name": "Cnki Pdf Download",
"version": "1.0.0",
"description": "从cnki的网站上以pdf的格式下载所有论文。",
"icons":
{
"16": "img/icon.png",
"48": "img/icon.png",
"128": "img/icon.png"
},
"background":
{
"scripts": ["js/background.js"]
},
"page_action":
{
"default_icon": "img/icon.png",
"default_title": "没有default title",
"default_popup": "popup.html"
},
"content_scripts":
[
{
"matches": ["https://kns.cnki.net/*"],
"js": ["js/jquery.js","js/index.js"]
}
],
"permissions":
[
"declarativeContent",
"contextMenus",
"https://kns.cnki.net/"
],
"web_accessible_resources": ["js/inject.js"],
"homepage_url": "https://www.yuque.com/lanhai-egpoa/ow0xlt/pkuigu",
"options_page": "options.html",
"options_ui":
{
"page": "options.html",
"chrome_style": true
},
"devtools_page": "devtools.html"
}