Created
April 6, 2023 13:20
-
-
Save weaming/65eead2067b264d8156daca41962b9df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Shotcuts | |
// @namespace http://bitflow.org | |
// @version 0.1 | |
// @description add shotcuts | |
// @match https://*/* | |
// @copyright 2022+, You | |
// ==/UserScript== | |
function onKey(e) { | |
// console.log(e, e.key); | |
switch (e.key) { | |
case 'Home': | |
if (e.metaKey) { | |
// Cmd + Home | |
location.href = location.origin; | |
} | |
break; | |
default: | |
break; | |
} | |
} | |
document.addEventListener('keydown', onKey, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment