user-scripts
user-scripts copied to clipboard
Download torrent by keyboard shortcut
Ctrl + S or something like this
Resources: https://craig.is/killing/mice http://www.webreference.com/programming/javascript-keyboard-shortcuts/2.html
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);