-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathoptions.html
More file actions
99 lines (99 loc) · 3.31 KB
/
options.html
File metadata and controls
99 lines (99 loc) · 3.31 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>AutoPause</title>
<link rel="stylesheet" href="options.css" />
<script src="options-browser.js" defer></script>
<script src="options.js" defer></script>
</head>
<body>
<h1>After changes press enter.</h1>
<label
>Places to use this extension (space separated): <br /><input
id="userinput"
size="500"
placeholder="Examples: youtube or <all_urls> or https://*.youtube.com/* https://soundcloud.com/* https://example.com/*"
/></label>
<label
>Exclude Matches (space separated): <br /><input
id="exclude"
size="500"
placeholder="Examples: zoom or https://meet.google.com/* https://discord.com/* https://teams.live.com/*"
/></label>
<p>
This permission is needed to pause, resume and fast forward media its not
needed to detect audio (You can opt-out of detecting media from other tabs
below)
</p>
<br />
<div>
<label for="ignoreother"> Ignore media from other tabs</label
><input type="checkbox" id="ignoreother" />
</div>
<div>
<label for="ignoreshort">
Ignore short media under 3 seconds (e.g. notification sounds)</label
><input type="checkbox" id="ignoreshort" />
</div>
<div>
<label for="nopermission">
No permission mode, discards tabs when needed.</label
><input type="checkbox" id="nopermission" />
</div>
<div>
<label for="disableresume"> Disable automatic resume</label
><input type="checkbox" id="disableresume" />
</div>
<div>
<label for="noauto"> Limit resume to the active and marked tabs</label
><input type="checkbox" id="noauto" />
</div>
<div>
<label for="resumelimit"> Dont resume old media thats 5 plays old</label
><input type="checkbox" id="resumelimit" />
</div>
<div>
<label for="pauseoninactive">
Pause media on tab change and limit resume to the active and marked
tabs</label
><input type="checkbox" id="pauseoninactive" />
</div>
<div>
<label for="ignoretabchange"> Ignore tab changes</label
><input type="checkbox" id="ignoretabchange" />
</div>
<div>
<label for="muteonpause">
Mute tab when its paused (unmuting a tab will resume it, no tab
switching needed)</label
><input type="checkbox" id="muteonpause" />
</div>
<div>
<label for="multipletabs"> Resume multiple tabs (old behavior)</label
><input type="checkbox" id="multipletabs" />
</div>
<div>
<label for="permediapause">
Pause per media instead of per tab (Breaks some sites)</label
><input type="checkbox" id="permediapause" />
</div>
<div>
<label for="allowactive"> Don't automatically pause active windows</label
><input type="checkbox" id="allowactive" />
</div>
<div id="chromeonly" hidden>
<div>
<label for="checkidle"> Pause media on device lock (Chrome Only)</label
><input type="checkbox" id="checkidle" />
</div>
<div>
<label for="ask">
Ask for permission to run on audible tabs (Chrome Only)</label
><input type="checkbox" id="ask" />
</div>
</div>
<h2>Shortcuts</h2>
<div id="shortcuts"></div>
</body>
</html>