NewWIP
code:script.js
scrapbox.PageMenu.addMenu({
title: 'NewWIP',
image: 'https://i.gyazo.com/7057219f5b20ca8afd122945b72453d3.png',
onClick: () => {func()},
});
function func(){
var project=location.pathname.split('/');
var    title = scrapbox.Page.title;
var number = Number(title.substr( 0, 5 ));
var now = new Date();
var path = ('https://scrapbox.io/'+project[1]+'/'+((number+1).toString().padStart(5, '0'))+'?body='+'WIP|書きかけ.icon WIP|書きかけ\n'+((number+1).toString().padStart(5, '0')) + '+'/'+  ((number+1).toString().padStart(5, '0'))+']\n'+(now.getFullYear())+'-'+((now.getMonth()+1).toString().padStart(2, '0'))+'-'+((now.getDate()).toString().padStart(2, '0'))+'\n'+(now.getMonth()+1)+'月'+(now.getDate())+'日\n\n\n\n◀'+((number+2).toString().padStart(5, '0'))+'\n▶'+title+'');
const encoded = encodeURI(path);
window.location.href = encoded;
}