If you happen upon an old.reddit.com page, this will redirect you to its regular (www) version
当前为
// ==UserScript==
// @name Old Reddit Redirect to New
// @description If you happen upon an old.reddit.com page, this will redirect you to its regular (www) version
// @version 0.1
// @author mica
// @namespace greasyfork.org/users/12559
// @include http*://old.reddit.com/*
// @grant none
// ==/UserScript==
window.location = document.URL.replace("old","www")