diff --git a/Reddit - Old layout.user.js b/Reddit - Old layout.user.js new file mode 100644 index 0000000..8794b82 --- /dev/null +++ b/Reddit - Old layout.user.js @@ -0,0 +1,13 @@ +// ==UserScript== +// @name Reddit - Old layout +// @namespace reddit-old +// @description Always replace reddit.com pages with their old.reddit.com counterpart +// @include http://www.reddit.com/* +// @include https://www.reddit.com/* +// @version 1.0 +// @grant none +// @run-at document-start +// ==/UserScript== + +window.stop() +window.location.href = window.location.href.replace("www.reddit.com","old.reddit.com")