script.jsscrapbox.PageMenu.addMenu({
title: 'Copy readable link',
image: 'https://i.gyazo.com/666fbbc693b591be3fc6d608f4b1def2.png',
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);
}
});