-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
executable file
·45 lines (45 loc) · 1.12 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
{
"author": "Steven A. Bjornson",
"name": "Bandcamp Enhancement Suite",
"version": "9.9.9",
"manifest_version": 3,
"description": "Provides extra functionality for Bandcamp",
"homepage_url": "https://github.com/sabjorn/BandcampEnhancementSuite",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"action": {
"default_icon": "icons/icon16.png",
"default_title": "Bandcamp Enhancement Suite",
"default_popup": "html/browser_action.html"
},
"host_permissions": [
"http://*.bandcamp.com/*",
"https://*.bandcamp.com/*",
"https://t4.bcbits.com/stream/*"
],
"minimum_chrome_version": "93",
"background": {
"service_worker": "dist/background.js"
},
"content_scripts": [
{
"matches": [
"http://*.bandcamp.com/*",
"https://*.bandcamp.com/*"
],
"js": [
"dist/main.js"
],
"css": ["css/style.css"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{3ca9d5aa-ad9f-4f7f-861b-999fe5c87273}",
"strict_min_version": "109.0"
}
}}