gh-card
https://gh-card.dev/repos/nwtgck/gh-card.svg https://github.com/nwtgck/gh-card
code:userscript.js
const githubRegex = /github.com\/(.+)/
scrapbox.PopupMenu.addButton({
title: text => githubRegex.test(text) ? "GitHub" : null,
onClick: (text) => {
const m = text.match(githubRegex);
if (!m) return text;
return [https://gh-card.dev/repos/${m[1]}.svg https://github.com/${m[1]}];
},
});