Created
April 9, 2018 22:38
-
-
Save maidis/a32ec223bb26982489f72393992fd2ec to your computer and use it in GitHub Desktop.
Twitter Share 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
| // Jacky's Blog - Minimal Twitter Share Bookmarklet | |
| // https://jacky.seezone.net/2017/10/19/8900/ | |
| // Sadece önceki kullandığım Google+ Bookmarklet'ine | |
| // benzemesi için küçük değişiklikler | |
| javascript:void((()=> { | |
| var F=document,E=encodeURIComponent; | |
| window.open(`https://twitter.com/intent/tweet/?text=${E(F.title)}&url=${E(F.location.href)}`,'Share to Twitter','width=600,height=460,menubar=no,location=no,status=no'); | |
| })()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment