Skip to content

Instantly share code, notes, and snippets.

View SpaceSaver's full-sized avatar

SpaceSaver

View GitHub Profile
@SpaceSaver
SpaceSaver / SaveAll.user.js
Created April 23, 2023 21:54
Code for saving all ChromeOS images on page at Chrome100.dev to the Web Archive Wayback Machine
function saveToWA(linkurl){
const form = document.createElement('form');
form.setAttribute("method", "POST");
form.setAttribute("action", "https://web.archive.org/save/" + linkurl);
form.id = "theForm";
const urlbox = document.createElement("input");
urlbox.id = "chromeurl";
urlbox.setAttribute("name", "url");
urlbox.value = linkurl;
form.appendChild(urlbox);
@SpaceSaver
SpaceSaver / index.html
Created May 17, 2021 23:08
A Lovely Marquee "You Suck!"
<marquee style="font-size: 71vh;" scrollamount=100>You suck!</marquee>
<style>
body {margin: 0;}
</style>