Chrome install - drag + drop onto extensions window at chrome://extensions
-
-
Save Lomanic/4929f8b28b9fdde3b06856cf5ac149f1 to your computer and use it in GitHub Desktop.
Twitter refined Greasemonkey / user script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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