Created
June 15, 2023 20:42
-
-
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
This file contains hidden or 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 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