nomadoor
https://gyazo.com/eb8684edde8473e6522710d72f7d43cb
ノマ扉|nomadoor
岡山県在住の現役ニート。
今はほとんど輪島にいます。
主な生息地 - /work4ai
ポートフォリオのような何か - /nomadoor-portfolio
Twitter - https://twitter.com/noma_door
#member
code:script.js
// https://scrapbox.io/api/code/rinsuki/nicothumb2img/nicothumb2img.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]}];
},
});