TweetButton
code:script.js
const tweetProjectName = "blu3mo-public"
scrapbox.PageMenu.addMenu({
title: 'Tweet Page',
onClick: () => {
const currentPageTitle = scrapbox.Page.title;
// URLを飛んだ時に一度decodeされてしまうので、二度encodeする
const doubleEncodedPageTitle = encodeURIComponent(encodeURIComponent(currentPageTitle));
const tweetPageUrl = https://scrapbox.io/${tweetProjectName}/${doubleEncodedPageTitle}
const twitterIntentUrl = https://twitter.com/intent/tweet?text=${tweetPageUrl};
console.log(encodeURIComponent(tweetPageUrl));
console.log(encodeURIComponent("あいうえお"));
window.location.href = twitterIntentUrl;
}
});