Skip to content

Instantly share code, notes, and snippets.

@karadaisy
Created April 9, 2015 21:48
Show Gist options
  • Save karadaisy/946d6b86c90d97cff2be to your computer and use it in GitHub Desktop.
Save karadaisy/946d6b86c90d97cff2be to your computer and use it in GitHub Desktop.
Tweet-aware reply bookmarklet
javascript:
(function(){
var url=window.location;
if(url.hostname=='twitter.com'&&url.pathname=='/'){
var openedTweet=document.querySelector('.opened-tweet');
if(openedTweet&&openedTweet.dataset.permalinkPath){
url='https://twitter.com'+openedTweet.dataset.permalinkPath;
}
}
window.open('https://kylewm.com/new/reply?url='+url,'_blank')
}
)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment