「今日の雑記」テンプレートを呼び出す
https://gyazo.com/fe083c63dcf53859283951097b7a6a20
code:script.js
scrapbox.PageMenu.addItem({
title: '雑記 (新規)',
image: 'https://gyazo.com/adf192ced6ca3cad306447041ca9eb8b/raw',
onClick: () => {func()},
});
function func(){
var project=location.pathname.split('/');
var title = scrapbox.Page.title;
var now = new Date();
var path = ('https://scrapbox.io/'+project[1]+'/'+(now.getFullYear())+'/'+((now.getMonth()+1).toString().padStart(2, '0'))+'/'+((now.getDate()).toString().padStart(2, '0'))+'の雑記?body=https://gyazo.com/8d3caa1039364ae24f6ec9f248de5101\n'+(now.getFullYear())+'/'+((now.getMonth()+1).toString().padStart(2, '0'))+'/'+((now.getDate()).toString().padStart(2, '0'))+'\nhr.icon');
const encoded = encodeURI(path);
window.location.href = encoded;
}
参考
shio
Tweet Menu - 橋本商会
更新日
2023/09/26