Skip to content

Instantly share code, notes, and snippets.

@tdkn
Last active December 11, 2015 04:48
Show Gist options
  • Save tdkn/4547473 to your computer and use it in GitHub Desktop.
Save tdkn/4547473 to your computer and use it in GitHub Desktop.
YouTube Daily Top Tracks Bookmarklet

YouTube Daily Top Tracks Bookmarklet

This bookmarklet is used to quick access to the "YouTube Daily Top Tracks" playlist.

How to use

  1. drag and drop
    [YouTube Daily Top Tracks](javascript:var date = new Date(); window.open('http://www.youtube.com/playlist?list=MCUS'+date.getFullYear(\)+('00'+ (date.getMonth()+1)).slice(-2)+('00' + date.getDate()).slice(-2));)
    to your browser bookmark toolbar.
var date = new Date();
window.open('http://www.youtube.com/playlist?list=MCUS'+date.getFullYear()+('00'+ (date.getMonth()+1)).slice(-2)+('00' + date.getDate()).slice(-2));
@tdkn
Copy link
Author

tdkn commented Jan 16, 2013

Oops! Can not drag and drop this bookmarklet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment