diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-03-28 11:27:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-28 11:27:37 -0400 |
commit | 98994d0b6529e665863bc9f6125eb3e116e0f9d5 (patch) | |
tree | 6230d7f1e2fac0645b0483b590c7cb8dcd1db08b /ext/settings.html | |
parent | 1664cc75f1afe6a98793b16a3b138537c4d144ef (diff) |
Add playAudioFromSource hotkey (#1570)
Diffstat (limited to 'ext/settings.html')
-rw-r--r-- | ext/settings.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/settings.html b/ext/settings.html index 8a2c1308..e9f27751 100644 --- a/ext/settings.html +++ b/ext/settings.html @@ -3169,6 +3169,7 @@ <option value="addNoteTermKana">Add term note (reading)</option> <option value="viewNote">View note</option> <option value="playAudio">Play audio</option> + <option value="playAudioFromSource">Play audio from source</option> <option value="copyHostSelection">Copy host window selection</option> <option value="scanSelectedText">Scan selected text</option> </select> @@ -3220,6 +3221,18 @@ <input type="number" step="1" min="1" class="hotkey-argument-input"> </div></template> +<template id="hotkey-argument-audio-source-template"><div class="flex-row-nowrap"> + <span class="hotkey-argument-label">Source:</span> + <select class="audio-source-select hotkey-argument-input"> + <option value="jpod101">JapanesePod101</option> + <option value="jpod101-alternate">JapanesePod101 (Alternate)</option> + <option value="jisho">Jisho.org</option> + <option value="text-to-speech">Text-to-speech</option> + <option value="text-to-speech-reading">Text-to-speech (Kana reading)</option> + <option value="custom">Custom</option> + </select> +</div></template> + <!-- Scripts --> <script src="/lib/jszip.min.js"></script> |