forked from dmilin1/dekindled
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
50 lines (50 loc) · 1.09 KB
/
manifest.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"manifest_version": 3,
"name": "DeKindled",
"version": "1.0",
"description": "Extract and save blob content from web readers like Kindle",
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png",
"1024": "icon.png"
},
"permissions": [
"scripting",
"activeTab",
"downloads",
"storage"
],
"host_permissions": [
"https://read.amazon.com/*",
"https://api.openai.com/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "DeKindled - Click to manage captured content",
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["https://read.amazon.com/*"],
"js": ["inject.js"],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": ["interceptor.js", "viewer-inject.js", "zip-utils.js"],
"matches": ["https://read.amazon.com/*"]
}
]
}