-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
47 lines (47 loc) · 1.14 KB
/
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
46
47
{
"{{chrome}}.manifest_version": 3,
"{{firefox}}.manifest_version": 2,
"name": "Batchcamp",
"description": "Bulk downloader for your Bandcamp purchases",
"version": "1.4.7",
"{{chrome}}.action": {
"default_popup": "src/popup/index.html",
"default_icon": {
"16": "icon-16.png",
"64": "icon-64.png",
"128": "icon-128.png"
}
},
"{{firefox}}.browser_action": {
"default_popup": "src/popup/index.html",
"default_icon": {
"16": "icon-16.png",
"64": "icon-64.png",
"128": "icon-128.png"
}
},
"content_scripts": [
{
"js": ["src/content/index.ts"],
"matches": ["https://bandcamp.com/*"],
"run_at": "document_start"
}
],
"background": {
"{{chrome}}.service_worker": "src/background/index.ts",
"{{firefox}}.scripts": ["src/background/index.ts"]
},
"{{chrome}}.permissions": ["storage", "downloads", "downloads.shelf"],
"{{firefox}}.permissions": [
"storage",
"downloads",
"cookies",
"https://bandcamp.com/*",
"https://*.bandcamp.com/*"
],
"icons": {
"16": "icon-16.png",
"64": "icon-64.png",
"128": "icon-128.png"
}
}