您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass YouTube age verification without logging in. / Umgehe die Altersverifikation ohne Einloggen.
当前为
// ==UserScript== // @name Bypass YouTube age verification / Youtube-Altersverifikation umgehen // @namespace tfr // @description Bypass YouTube age verification without logging in. / Umgehe die Altersverifikation ohne Einloggen. // @include http://www.youtube.com/watch?v=* // @include https://www.youtube.com/watch?v=* // @version 1 // @grant none // ==/UserScript== /* This script is licensed under CC0 / Dieses Skript steht unter CC0: * http://creativecommons.org/publicdomain/zero/1.0/deed.de * http://creativecommons.org/publicdomain/zero/1.0/deed.en */ 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 = video-id.substr(0, videoid.indexOf("&")); } videoid = decodeURIComponent(videoid); 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); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址