tweet-card
https://gyazo.com/cd1030180e9cc040bf1cb62e6c30a40a
code:script.js
scrapbox.PopupMenu.addButton({
title: "tweet2image",
onClick: (text) => {
const m = text.match(/twitter.com\/(.+)\/status\/(\d+)/);
if (!m) return text;
return [https://tweet2image.vercel.app/${m[2]}.jpg?lang=ja&tz=9 https://twitter.com/${m[1]}/status/${m[2]}];
},
});
code:usage.js