by me
copy all magnet links on a page
javascript:!function(a){var b=document.createElement("textarea"),c=document.getSelection();b.textContent=a,document.body.appendChild(b),c.removeAllRanges(),b.select(),document.execCommand("copy"),c.removeAllRanges(),document.body.removeChild(b)}(Array.from(document.querySelectorAll('a[href*="magnet:?"]')).join("\n\n"));not by me
RSS
add current site to freshRSS instance (uses RSS auto-discovery)
javascript:(function(){var%20url%20=%20location.href;var%20otherWindow=window.open('about:blank','_blank');otherWindow.opener=null;otherWindow.location='https://rss.sayitditto.net/i/?c=feed&a=add&url_rss='+encodeURIComponent(url);})();add current site (must be a feed URL) to artemis
javascript:void%20function(){javascript:(function(){window.open(%22https://artemis.jamesg.blog/add%3Furl=%22+encodeURIComponent(location.href)+%22%26note=subscribed%20via%20%22+encodeURIComponent(document.title)+%22%20(%22+encodeURIComponent(location.href)+%22)%22)})()}();fun
by adam le doux:
visit a random site from its 88x31 button on the current page
javascript:var links = document.getElementsByTagName('a'); var buttons = []; for (var i = 0; i < links.length; i++) { var img = links[i].getElementsByTagName('img')[0]; if (img && img.width == 88 && img.height == 31) { buttons.push(links[i]); } } if (buttons.length > 0) { var button = buttons[Math.floor(Math.random() * buttons.length)]; if (confirm('found a button! visit ' + button.href + '?')) { window.location.href = button.href; } } else { alert('sorry, there are no 88x31 buttons on this page :('); }