-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
57 lines (52 loc) · 1.02 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
49
50
51
52
53
54
55
56
57
{
"manifest_version": 3,
"name": "Better Volume Booster",
"version": "1.12.0",
"description": "Volume booster firefox extension that remembers your choices.",
"icons": {
"48": "images/icon-48.png",
"96": "images/icon-96.png"
},
"action": {
"default_popup": "pages/popup.html"
},
"options_ui": {
"page": "pages/options.html",
"browser_style": false
},
"background": {
"scripts": ["scripts/background.js"]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["scripts/content.js"],
"run_at": "document_start",
"all_frames": true,
"match_about_blank": true
}
],
"declarative_net_request": {
"rule_resources": [{
"id": "crossoriginfix",
"enabled": true,
"path": "dnrrules/crossoriginfix.json"
}]
},
"optional_permissions": [
"<all_urls>"
],
"permissions": [
"declarativeNetRequestWithHostAccess",
"storage",
"scripting",
"cookies"
],
"browser_specific_settings": {
"gecko": {
"id": "VolumeBoosterWithoutDementia@zWolfrost.github.com"
}
}
}