-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.firefox.json
More file actions
89 lines (81 loc) · 2.42 KB
/
manifest.firefox.json
File metadata and controls
89 lines (81 loc) · 2.42 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"manifest_version": 3,
"name": "DownloadLib",
"version": "1.0.5",
"description": "Скачивает мангу с порталов MangaLib в удобном для чтения формате.",
"author": "https://ivanvit.ru",
"homepage_url": "https://github.com/ivanvit100/DownloadLib",
"background": {
"scripts": [
"core/BrowserApi.js",
"core/RateLimiter.js",
"services/BaseService.js",
"services/mangalib/MangaLibService.js",
"services/mangalib/config.js",
"services/ranobelib/RanobeLibService.js",
"services/ranobelib/config.js",
"background/Background.js",
"background/BackgroundDownload.js",
"exporters/ExporterFactory.js",
"exporters/BaseExporter.js",
"exporters/FB2Exporter.js",
"exporters/PDFExporter.js",
"exporters/EPUBExporter.js",
"exporters/AZW3Exporter.js",
"exporters/SimpleExporter.js",
"lib/jszip.min.js",
"lib/html2pdf.min.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "@downloadlib",
"strict_min_version": "109.0"
}
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"permissions": [
"activeTab",
"tabs",
"downloads",
"storage",
"webRequest",
"webRequestBlocking",
"scripting"
],
"host_permissions": [
"https://mangalib.me/*",
"https://mangalib.org/*",
"https://ranobelib.me/*",
"https://api.cdnlibs.org/*",
"https://img3.mixlib.me/*",
"https://cover.imglib.info/*",
"https://*/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://mangalib.me/*",
"https://mangalib.org/*",
"https://ranobelib.me/*"
],
"js": ["background/RemoveAds.js"],
"run_at": "document_idle"
}
]
}