forked from rtrn/volumecontrol
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
41 lines (41 loc) · 1.07 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
{
"manifest_version": 3,
"name": "Volume Control",
"version": "3",
"description": "Adds a volume control for the current site, that can also boost the volume beyond the normal range.",
"homepage_url": "https://github.com/Chaython/volumecontrol",
"icons": {
"96": "ico.svg"
},
"optional_permissions": ["<all_urls>", "activeTab"],
"permissions": ["storage", "activeTab"],
"action": {
"default_icon": "ico.svg",
"default_title": "Volume Control",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "file:///*"],
"exclude_globs": ["https://www.shadertoy.com/"],
"js": ["lib/arrive.min.js", "cs.js"],
"all_frames": true,
"match_about_blank": true
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"commands": {
"_execute_action": {
"description": "Open volume control"
}
},
"browser_specific_settings": {
"gecko": {
"id": "{57e8684d-5ae8-47d6-93c9-f870ef0e40a3}",
"strict_min_version": "42.0"
}
}
}