Scrapbox UserScript MenuItem Copy readable link
code:script.js
scrapbox.PageMenu.addMenu({
title: 'Copy readable link',
onClick: () => {
const input = document.createElement('input');
input.setAttribute('id', 'copyinput');
document.body.appendChild(input);
input.value = decodeURI(window.location.href);
input.select();
document.execCommand('copy');
document.body.removeChild(input);
}
});