-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
manifest_base.json
60 lines (60 loc) · 1.48 KB
/
manifest_base.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
58
59
60
{
"name": "Jump Cutter",
"version": "1.28.0",
"description": "__MSG_extensionDescription__",
"permissions": ["storage", "scripting"],
"content_security_policy": {
"extension_pages": "default-src 'none'; script-src 'self'; img-src 'self'; style-src 'unsafe-inline'; media-src blob:"
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"64": "icons/icon.svg-64.png",
"128": "icons/icon-big-padded.svg-128.png"
}
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["content/main.js"],
"all_frames": true,
"run_at": "document_idle",
"match_about_blank": true
}
],
"host_permissions": ["http://*/*", "https://*/*"],
"web_accessible_resources": [
{
"resources": [
"content/cloneMediaSources-for-page-world.js",
"content/SilenceDetectorProcessor.js",
"content/VolumeFilterProcessor.js",
"chunks/*.js"
],
"matches": ["*://*/*"]
}
],
"options_ui": {
"page": "options/index.html",
"open_in_tab": true
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Space"
}
},
"toggle_enabled": {
"description": "__MSG_toggleExtension__",
"suggested_key": {
"default": "Alt+Shift+X"
}
}
},
"icons": {
"64": "icons/icon.svg-64.png",
"128": "icons/icon-big-padded.svg-128.png"
},
"manifest_version": 3,
"default_locale": "en"
}