Skip to content

Instantly share code, notes, and snippets.

View jsveron23's full-sized avatar
🤫
secret

Tony Jin jsveron23

🤫
secret
View GitHub Profile
@jsveron23
jsveron23 / youtubetweet.js
Last active July 11, 2016 07:51
Bookmarklet to add tweet with start time when you watching Youtube
javascript:(function(){var u=location.href;p=document.getElementById('movie_player');var ct=p.getCurrentTime();var m=Math.floor(ct/60);var s=ct-m*60;s=s<9?0+''+s:s;s=Math.floor(s);var rt=m+'m'+s+'s';var nu=u+'&t='+rt;window.open('http://twitter.com/share?text'+encodeURIComponent('Watch this! - '+document.getElementsByTagName('title')[0].innerHTML)+'&url='+encodeURIComponent(nu)+'&hashtags=thisisit')})();