Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // [@name](/u/name) Old reddit redirect
- // [@namespace](/u/namespace) http://tampermonkey.net/
- // [@version](/u/version) 0.1
- // [@description](/u/description) Redirect reddit links to the old domain in order to see all comments and disable certain stylings
- // [@author](/u/author) You
- // [@match](/u/match) *://*.reddit.com/*
- // [@exclude](/u/exclude) *://old.reddit.com/*
- // [@grant](/u/grant) GM.xmlHttpRequest
- // [@connect](/u/connect) reddit.com
- // [@grant](/u/grant) GM_addStyle
- // [@icon](/u/icon) data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
- // ==/UserScript==
- (function() {
- 'use strict';
- var reg = new RegExp('(.*)://www.reddit.com/(.*)');
- if (reg.test(document.URL))
- {
- //alert(document.URL);
- var newURL = 'https://old.reddit.com/'+window.location.pathname;
- window.location.href = newURL;
- }
- })();
Add Comment
Please, Sign In to add comment