emoji
https://scrapbox.io/files/68906561f740ba9288e5211d.jpeg
やりたいことをやるだけ
音MADにハマっているインターネットユーザー。無知。 性別や年齢、住所など諸々の個人情報を明言する事は基本無いが、SNSやこのcosenseを見てればある程度特定可能かもしれない。 discord:emoji_298
code:script.js
const niconicoURLRegex = /(?=(?=nico\.ms|nicovideo\.jp\/(?=watch|seiga|)\/)|)?(a-z{2}?1-90-9*)/ scrapbox.PopupMenu.addButton({
title: text => {
const result = text.match(niconicoURLRegex)
if (result == null) return null
return nicothumb2img (${result[0]})
},
onClick: (text) => {
const m = text.match(niconicoURLRegex);
if (!m) return text;
return [https://nicothumb2img.vercel.app/image/${m[0]}#.png https://nico.ms/${m[0]}];
},
});