-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
39 lines (39 loc) · 901 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
{
"manifest_version": 3,
"author": "Ömer Faruk",
"description": "Downloads books borrowed from archive.org",
"name": "ePub Downloader (archive.org)",
"version": "0.1.0",
"icons": {
"128": "assets/images/logo128.png"
},
"action": {
"default_icon": {
"128": "assets/images/logo128.png"
},
"default_title": "archive.org ePub downloader"
},
"background": {
"service_worker": "js/service-worker.js",
"type": "module"
},
"permissions": [
"tabs",
"scripting",
"declarativeNetRequest"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"css/*",
"js/*"
],
"matches": [
"https://archive.org/*"
]
}
]
}