-
-
Save aobasar/624b6300d86515518fa880d64c1d9d5a to your computer and use it in GitHub Desktop.
Youtube Search Bookmarklet
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
javascript:(function(){ | |
var youtube = 'https://www.youtube.com/results?search_query='; | |
var query = prompt('video query'); | |
if(query != '') { | |
document.location.href = youtube + query; | |
} | |
})(); |
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
// add a bookmark to your Bookmark tabs and copy this code in URL. Name it YT if you want. | |
!function(){var a="https://www.youtube.com/results?search_query=",b=prompt("video query");""!=b&&(document.location.href=a+b)}(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment