WorkFlowyでズーム中に兄弟項目を作るブックマークレット
code:script.js
(function(){
document.body.addEventListener('keydown',event => {
if (event.altKey && event.metaKey){
if(event.keyCode===71){
console.log(WF.currentItem());//ズーム項目の親?
sp = WF.currentItem();
WF.createItem(sp.getParent(), sp.getPriority() + 1)
}
}
});
})();
WF.createItem(s[0].getParent(), s[0].getPriority())
一つ目の引き数は、作る場所(親:e
二つ目の引き数は、項目の位: t
ブックマークレット用