This file contains 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:void%20function(){if(-1!==window.location.href.indexOf(%22youtube.com/watch%22)){var%20re=/youtube.com\/watch\%3F.*v=([^%26]+)/g,matches=re.exec(window.location.href);null!==matches%26%26(window.location.href=%22https://www.youtube-nocookie.com/embed/%22+matches[1]+%22%3Frel=0%26amp;showinfo=0%22)}}(); |
This file contains 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
// http://bookmarklets.org/maker/ | |
if(window.location.href.indexOf("youtube.com/watch") !== -1) { | |
var re = /youtube.com\/watch\?.*v=([^&]+)/g; | |
var matches = re.exec(window.location.href) | |
if(matches !== null) { | |
window.location.href = "https://www.youtube-nocookie.com/embed/"+matches[1]+"?rel=0&showinfo=0" | |
} | |
} |
🌟 Was this page helpful? Please let me know with this quick, 3 question survey.