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
ブックマークレット用
javascript:(function(d,s){ s=d.createElement('script');s.src='https://scrapbox.io/api/code/rashitamemo/WorkFlowy%E3%81%A7%E3%82%BA%E3%83%BC%E3%83%A0%E4%B8%AD%E3%81%AB%E5%85%84%E5%BC%9F%E9%A0%85%E7%9B%AE%E3%82%92%E4%BD%9C%E3%82%8B%E3%83%96%E3%83%83%E3%82%AF%E3%83%9E%E3%83%BC%E3%82%AF%E3%83%AC%E3%83%83%E3%83%88/script.js';d.body.appendChild(s);})(document)