Zum Testen, die Links der folgenden Bookmarklets (Links mit Anfang ‘BM’) einfach zu den Lesezeichen, per Drag Drop ziehen.
Selektierter Text, URL Decoder, Clipboard
zB. %20 wird Blank
Der URL kodierte Text einer Selection wird Decodiert und in Clipboard gesetzt.
Test: %22Das ist ein Text mit einer Raute (%23) und einem kaufmänichen Und (%26)%22
avascript:(function()
{
var sSelectText = document.getSelection().toString();
if(navigator.clipboard && window.isSecureContext)
{
sSelectText = decodeURIComponent(sSelectText.replace(/\+/g, " "));
navigator.clipboard.writeText(sSelectText);
}
else
{
var textarea = document.createElement("textarea");
textarea.textContent = sSelectText;
textarea.style.position = "fixed";
textarea.style.left = "-9999px";
textarea.style.top = "-9999px";
document.body.appendChild(textarea);
textarea.focus();
textarea.select();
document.execCommand("copy");
document.body.removeChild(textarea);
sSelectText = decodeURIComponent(sSelectText.replace(/\+/g, " "));
}
alert("Konvertierter Text im Clipboard");
})();