Discussions » Creation Requests
Youtube videos will not play full screen with it enabled
Yes,when this script enabled,videos will not play fullscreen ->
if(window.document.getElementById("watch7-player-age-gate-content"))
{
var videoid = window.location.search.substr(window.location.search.indexOf("v=") + 2);
if(videoid.indexOf("&") > -1)
{
videoid = videoid.substr(0, videoid.indexOf("&"));
}
videoid = decodeURIComponent(videoid);
window.document.getElementById("player-api").remove();
var playerparent = window.document.getElementById("player-unavailable");
var playerframe = window.document.createElement("iframe");
playerframe.setAttribute("src", "//www.youtube.com/embed/" + videoid + "?autoplay=1&showinfo=0");
playerframe.setAttribute("id", "player-frame");
playerframe.setAttribute("style", "position:absolute; z-index:99999; width:100%; height:100%;");
playerparent.appendChild(playerframe);
}
P.S. How fix it?
Please provide an example youtube video without porn
The iframe should have allowfullscreen
attribute:
playerframe.setAttribute("allowFullscreen", "");
or simply
playerframe.allowFullscreen = true;
Youtube videos will not play full screen with it enabled
https://greasyfork.org/ru/scripts/10032-bypass-youtube-age-verification
https://www.reddit.com/r/firefox/comments/5gm26v/bypass_youtube_age_verification_improved/
Maybe\can anyone fix this?