Created
April 9, 2015 21:48
-
-
Save karadaisy/946d6b86c90d97cff2be to your computer and use it in GitHub Desktop.
Tweet-aware reply bookmarklet
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
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