Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created March 27, 2014 00:09
Show Gist options
  • Save z-------------/9796841 to your computer and use it in GitHub Desktop.
Save z-------------/9796841 to your computer and use it in GitHub Desktop.
Open a YouTube video in the embed view
(function(e){
var t = e.substring(e.indexOf("v=") + 2, e.indexOf("v=") + 13);
if (e.indexOf("youtube.com/watch") != -1) {
window.location = "http://www.youtube.com/embed/" + t + "?autohide=1";
} else {
alert("You can only use this on YouTube videos, silly");
}
})(location.href)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment