-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest-chrome.json
83 lines (83 loc) · 2.07 KB
/
manifest-chrome.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "AutoPause",
"version": "2.8.4",
"description": "Pause other audio and video sources if audio is playing on active tab with automatic resume",
"content_security_policy": {
"extension_pages": "default-src 'none'; script-src 'self'; frame-ancestors 'none'; form-action 'none'; upgrade-insecure-requests; block-all-mixed-content"
},
"cross_origin_embedder_policy": {
"value": "require-corp"
},
"cross_origin_opener_policy": {
"value": "same-origin"
},
"commands": {
"gotoaudible": {
"suggested_key": {
"default": "Alt+K",
"mac": "Alt+K"
},
"description": "Go to tab with audio"
},
"disableresume": {
"description": "Toggle auto resume"
},
"toggleFastPlayback": {
"suggested_key": {
"default": "Alt+Q",
"mac": "Alt+Q"
},
"description": "Toggle fast playback"
},
"Rewind": {
"description": "Rewind"
},
"pauseoninactive": {
"suggested_key": {
"default": "Alt+I",
"mac": "Alt+I"
},
"description": "Toggle pause on inactive"
},
"backgroundaudio": {
"suggested_key": {
"default": "Alt+O",
"mac": "Alt+O"
},
"description": "Set tab to play when nothing else is"
},
"togglePlayback": {
"description": "Toggle media playback"
},
"next": {
"description": "Go to end of media"
},
"previous": {
"description": "Go to start of media"
},
"ignoretab": {
"description": "Ignore a tab"
},
"previoustab": {
"description": "Play media from previous tab"
},
"autopausewindow": {
"description": "Limit autopause usage to a window"
}
},
"permissions": [
"storage",
"scripting",
"idle"
],
"background": {
"service_worker": "background.js"
},
"icons": {"48": "icon48.png"},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"optional_host_permissions": ["<all_urls>"],
"manifest_version": 3
}