-
Notifications
You must be signed in to change notification settings - Fork 34
/
manifest.json
48 lines (48 loc) · 1.01 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
48
{
"manifest_version": 2,
"name": "SoundFixer",
"author": "Val Packett",
"version": "1.4.1",
"description": "Lets you fix annoying sound problems in YouTube videos and such. Like audio in one channel only, too quiet or too loud",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"icons": {
"96": "icon.svg",
"48": "icon.svg"
},
"permissions": [
"activeTab",
"webNavigation"
],
"browser_action": {
"default_icon": "icon.svg",
"default_title": "SoundFixer",
"default_popup": "popup.html",
"theme_icons": [
{
"dark": "icon.svg",
"light": "icon-inv.svg",
"size": 64
},
{
"dark": "icon.svg",
"light": "icon-inv.svg",
"size": 48
},
{
"dark": "icon.svg",
"light": "icon-inv.svg",
"size": 32
},
{
"dark": "icon.svg",
"light": "icon-inv.svg",
"size": 16
}
],
"browser_style": true
}
}