forked from strukteon/digi4school-to-pdf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
44 lines (36 loc) · 898 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
{
"manifest_version": 2,
"name": "digi4school to pdf",
"version": "1.6",
"author": "strukteon",
"description": "Converts digi4school books to pdf so they can be used offline.",
"homepage_url": "https://github.com/strukteon/digi4school-to-pdf",
"icons": {
"32": "assets/icon-32.png",
"64": "assets/icon-64.png",
"128": "assets/icon-128.png",
"512": "assets/icon-512.png"
},
"permissions": [
"activeTab",
"tabs"
],
"browser_action": {
"default_icon": "assets/icon-64.png",
"default_title": "digi4school to pdf",
"default_popup": "popup/popup.html"
},
"content_scripts": [{
"matches": ["https://*/ebook/*"],
"js": [
"libraries/browser-polyfill.min.js",
"scripts/d4s_detection.js"
]
}],
"background": {
"scripts": [
"libraries/browser-polyfill.min.js",
"scripts/background.js"
]
}
}