Skip to content

Instantly share code, notes, and snippets.

@igrep
Created July 4, 2019 06:26
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 igrep/284605b8c4c4801093d8a6751174af58 to your computer and use it in GitHub Desktop.
Save igrep/284605b8c4c4801093d8a6751174af58 to your computer and use it in GitHub Desktop.
Switch between twitter.com and mobile.twitter.com
switch(location.hostname){
case 'twitter.com':
location.href = location.href.replace(/^https:\/\/twitter/, 'https://mobile.twitter');
break;
case 'mobile.twitter.com':
location.href = location.href.replace(/^https:\/\/mobile\.twitter/, 'https://twitter');
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment