Created
March 27, 2014 00:09
-
-
Save z-------------/9796841 to your computer and use it in GitHub Desktop.
Open a YouTube video in the embed view
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
| (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