Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions options.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ <h1>After changes press enter.</h1>
<div><label for="allowactive"> Dont 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>
Expand Down
2 changes: 1 addition & 1 deletion options.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var permissions = [];
var options = {};

// ID for each checkbox
const supported = ['disableresume', 'pauseoninactive', 'multipletabs', 'ignoretabchange', 'muteonpause', 'ignoreother', 'nopermission', 'permediapause', 'checkidle','resumelimit', 'allowactive'];
const supported = ['disableresume', 'pauseoninactive', 'multipletabs', 'ignoretabchange', 'muteonpause', 'ignoreother', 'nopermission', 'permediapause', 'checkidle','resumelimit', 'allowactive', 'ask'];

var userinput = document.getElementById('userinput');

Expand Down
Loading