Skip to content

Instantly share code, notes, and snippets.

@Lomanic
Forked from nikcub/README.md
Last active May 5, 2016 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lomanic/4929f8b28b9fdde3b06856cf5ac149f1 to your computer and use it in GitHub Desktop.
Save Lomanic/4929f8b28b9fdde3b06856cf5ac149f1 to your computer and use it in GitHub Desktop.
Twitter refined Greasemonkey / user script

Chrome install - drag + drop onto extensions window at chrome://extensions

// ==UserScript==
// @name twitter_refine
// @description Redirect desktop Wikipedia to mobile
// @match https://www.twitter.com/*
// @match https://twitter.com/*
// @exclude https://twitter.com/intent/*
// @run-at document-start
// @grant none
// ==/UserScript==
location.replace(location.protocol+'//mobile.twitter.com'+location.pathname);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment