Skip to content

Instantly share code, notes, and snippets.

View SpaceSaver's full-sized avatar

SpaceSaver

View GitHub Profile
@SpaceSaver
SpaceSaver / Google Workspace Parent Linker.user.js
Created February 14, 2025 02:33
Changes the parent folder name to a link in document info
// ==UserScript==
// @name Docs Parent Linking
// @namespace https://github.com/SpaceSaver
// @version 2025-02-12
// @description try to take over the world!
// @author u/SpaceSaver2000-1
// @match https://docs.google.com/*/d/*/edit*
// @icon https://docs.google.com/favicon.ico
// @run-at document-idle
// @grant none
@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>