Created
March 21, 2014 22:38
-
-
Save davebradford/9697962 to your computer and use it in GitHub Desktop.
Breakdown of Twitter Profile Bookmarklet http://davebradford.com/blog/twitter-profile-bookmarklet/
This file contains 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
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
I made a version opens the specific tweet that you are viewing. If you're viewing a profile, it goes to the profile. Also works with either mobile or regular twitter url. But it's a bit longer.
https://yous.be/2014/03/27/twitter-link-bookmarklet/