nomadoor
https://gyazo.com/eb8684edde8473e6522710d72f7d43cb
ノマ扉|nomadoor
岡山県在住の現役ニート。
討論が強いかはさておいて、短所は完璧に合ってますね
code:script.js
// フキダシ
scrapbox.PopupMenu.addButton({
title: '📕️️',
onClick: text => [** ${text}]
})
scrapbox.PopupMenu.addButton({
title: 'code',
onClick: text => "[${text}]"
})
code:script.js
// /(?=(?=nico\.ms|nicovideo\.jp\/(?=watch|seiga|)\/)|)?(a-z{2}?1-90-9*)/ const niconicoRegex = /https:\/\/www.nicovideo.jp\/watch\/(a-z{2}\d+)/ scrapbox.PopupMenu.addButton({
title: text => niconicoRegex.test(text) ? "ニコニコ" : null, // id情報を切る
onClick: (text) => {
const m = text.match(niconicoRegex);
if (!m) return text;
return [https://nicothumb2img.vercel.app/image/${m[1]}#.png https://nico.ms/${m[1]}];
},
});