Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ebetancourt/9744723 to your computer and use it in GitHub Desktop.
Save ebetancourt/9744723 to your computer and use it in GitHub Desktop.
javascript:
// Take the current page URL and put it in a variable called url
var url = document.URL;
// Create a new variable called tweetbotProfile and replace the mobile twitter url with the Tweetbot x-callback-url scheme
var tweetbotProfile = url.replace(/https:\/\/(mobile.)?twitter.com\//,"tweetbot:///user_profile/");
// Go to the new URL in tweetbotProfile
window.location = tweetbotProfile;
// To get this to work using Twitterrific just change the tweetbot:///user_profile/ to twitterrific:///profile?screen_name=
// Enjoy!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment