Skip to content

Instantly share code, notes, and snippets.

@nzbr
Created June 15, 2023 20:42
Show Gist options
  • Save nzbr/ebfc15f7cbb7d0db4ecf399cbc1901e5 to your computer and use it in GitHub Desktop.
Save nzbr/ebfc15f7cbb7d0db4ecf399cbc1901e5 to your computer and use it in GitHub Desktop.
User script to redirect any Reddit site to its archive.org capture of just before the blackout
// ==UserScript==
// @name Reddit like it's 2023-06-11
// @namespace Violentmonkey Scripts
// @match https://www.reddit.com/*
// @grant none
// @version 1.0
// @author nzbr
// @description Redirect any Reddit site to its archive.org capture of just before the blackout
// ==/UserScript==
document.location.href = `https://web.archive.org/web/20230611/${document.location.href}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment