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
<div id="app"></div> | |
<script> | |
// Create virtual node | |
function h(tag, props, children) { | |
// Return the virtual node | |
return { | |
tag, | |
props, | |
children, | |
} |
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 Private Post Redirector | |
// @namespace ignamiranda | |
// @version 1.1 | |
// @description Redirects the "Browse Reddit" button to the Wayback Machine archive of a private Reddit post or subreddit | |
// @author Ignacio Miranda | |
// @match https://www.reddit.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== |
OlderNewer