Created
February 1, 2022 17:44
-
-
Save schalkburger/cfb8de525ccc37615921746d5093fd24 to your computer and use it in GitHub Desktop.
A simple bookmarklet to tweet the current page
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(){n=getSelection().anchorNode;if(!n){t=document.title;}else{t=n.nodeType===3?n.data:n.innerText;}t=%27“%27+t.trim()+%27”\n\n%27;window.open(`https://twitter.com/compose/tweet?text=${encodeURIComponent(t)}${document.location.href}`)})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment