Skip to content

Instantly share code, notes, and snippets.

@maidis
Created April 9, 2018 22:38
Show Gist options
  • Save maidis/a32ec223bb26982489f72393992fd2ec to your computer and use it in GitHub Desktop.
Save maidis/a32ec223bb26982489f72393992fd2ec to your computer and use it in GitHub Desktop.
Twitter Share Bookmarklet
// 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