user-scripts icon indicating copy to clipboard operation
user-scripts copied to clipboard

Download torrent by keyboard shortcut

Open ghost opened this issue 8 years ago • 1 comments

Ctrl + S or something like this

Resources: https://craig.is/killing/mice http://www.webreference.com/programming/javascript-keyboard-shortcuts/2.html

ghost avatar Nov 24 '17 15:11 ghost

Anyone who wants to implement a hotkey, add the code below to the main function. It reacts to ` hotkey.

function hotkey(event) {
    if (event.keyCode === 192) {
        document.querySelector("a.quick-download").click();
    }
}
document.addEventListener("keydown", hotkey, false);

oltodosel avatar Mar 27 '22 23:03 oltodosel