easyLogging
code:script.js
var onKeyDown = function(e){
var name = e.code;
if (e.metaKey) {
if (e.shiftKey){
if(name == "KeyK"){
document.location.href="https://scrapbox.io/wkpmm/";
}
if(name == "Period"){
document.location.href="https://scrapbox.io/wkpmm/new";
}
}
}
}
document.addEventListener('keydown', onKeyDown);