Make YouTube videos full screen on iPad

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)}}();
view raw bookmarklet.js hosted with ❤ by GitHub
// 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"
}
}
view raw source.js hosted with ❤ by GitHub

🌟 Was this page helpful? Please let me know with this quick, 3 question survey.