新ページ作成script
ショートカットでnew pageに遷移できるscript
元ネタ:
Cosense(Scrapbox)に爆速でメモを取るためのおすすめ設定
Ctrl Uにした
Emacs binding
と被らないから…
Macでショートカットキーを使って、思いついた瞬間に Scrapbox でメモれるようにする|ヒツジモチ
mac
だとこれもできそう
Ctrl Command Uで割り当ててみた
code:script.js
const handleKeyPress = (event) => {
if (event.ctrlKey && event.key === 'u') {
event.preventDefault()
window.location.href = '
https://scrapbox.io/mouii/new'
}
}
document.addEventListener('keydown', handleKeyPress)
userscript
public.icon