-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
38 lines (38 loc) · 1.37 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
{
"manifest_version" : 3,
"name" : "YouTube Musical Spectrum",
"short_name" : "YTMS",
"description" : "Audio visualizer for YouTube and YT Music with musical notes.",
"version" : "11.0.2",
"icons" : {
"128" : "modules/@mfcc64/[email protected]/icon-128.png",
"64" : "modules/@mfcc64/[email protected]/icon-64.png",
"48" : "modules/@mfcc64/[email protected]/icon-48.png",
"32" : "modules/@mfcc64/[email protected]/icon-32.png",
"24" : "modules/@mfcc64/[email protected]/icon-24.png",
"16" : "modules/@mfcc64/[email protected]/icon-16.png"
},
"action" : {},
"browser_specific_settings": {
"gecko": {
"id": "{1e41b6c3-1ae3-41eb-89fc-f5c5eb5c1301}"
},
"gecko_android": {}
},
"web_accessible_resources": [
{
"matches" : [ "https://www.youtube.com/*", "https://music.youtube.com/*" ],
"resources" : [ "*.png", "/modules/*.mjs", "/modules/*.wasm" ]
}
],
"content_scripts" : [
{
"run_at" : "document_end",
"js" : [ "wrapper.js" ],
"matches" : [ "https://www.youtube.com/*", "https://music.youtube.com/*" ]
}
],
"content_security_policy" : {
"extension_pages" : "default-src 'none'; script-src 'self'; style-src 'self'; img-src 'self';"
}
}