This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<marquee style="font-size: 71vh;" scrollamount=100>You suck!</marquee> | |
<style> | |
body {margin: 0;} | |
</style> |