script.jsscrapbox.PageMenu.addMenu({
title: "別名登録",
image: "https://gyazo.com/b4ba986400a1c3075baa5cf9332cae74/raw",
onClick: () => {
const title = scrapbox.Page.title;
const brief = (() => {
const temp = title
.split(/\b/)
.filter(x => x.length > 1)
.map(x => x[0].toUpperCase())
.join("");
return prompt(title + " の別名", temp);
})();
const body = encodeURIComponent(`\n\`${brief}\`#${title.replaceAll(" ", "_")}\`\`\n#${brief.replaceAll(" ", "_")}\``);
window.open(
"https://scrapbox.io/" + encodeURIComponent(scrapbox.Project.name) + "/new?body=" + body,
"_blank",
"width"
);
}
});