Skip to content

Instantly share code, notes, and snippets.

@Soft
Created May 16, 2010 10:14
Show Gist options
  • Save Soft/402803 to your computer and use it in GitHub Desktop.
Save Soft/402803 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Reddit mobile redirect
// @include http://m.reddit.com/*
// @description Redirects m.reddit.com addresses to the main site
// ==/UserScript==
window.location = window.location.href.replace(/^http:\/\/m\.(.+)/, "http://www.$1");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment