Youtube Age Confirmation Bypass

Prevents you from having to sign in to view age restricted videos on YouTube

目前為 2017-05-22 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Youtube Age Confirmation Bypass
// @namespace   kneels
// @description Prevents you from having to sign in to view age restricted videos on YouTube
// @include 	http://www.youtube.com/*
// @include 	https://www.youtube.com/*
// @exclude 	http://www.youtube.com/embed/*
// @exclude 	https://www.youtube.com/embed/*
// @version     1.65
// @grant       none
// ==/UserScript==

var quality = 720; // Change this to the default quality of your preference

function getCurrentUrl() {
    return decodeURIComponent(window.location.href);
}

function getEmbedUrl(videoID) {
    return "https://www.youtube.com/embed/" + videoID;
}

function getVideoID(url) {
    url = url.substr(url.indexOf("v=") + 2);
    var junk = url.indexOf("&");
    if (junk != -1) {
        url = url.substr(0, junk);
    }
    return url;
}

function createEmbedString() {
    var embedString = "<iframe width=\"100%\" height=\"100%\" src='" +
        getEmbedUrl(getVideoID(getCurrentUrl())) + "?autoplay=1&vq=hd" +
        quality + "' frameborder=\"0\" allowfullscreen></iframe>";

    return embedString;
}

var target = document.body;
var title = "";

var observer = new MutationObserver(function(mutations) {
	// Check if a new page was (dynamically) loaded
    if (title != document.title) {

        // Redirect to the regular video page if we're on a "verify age" page
        if (getCurrentUrl().indexOf("verify_age?next_url=/") != -1) {
            window.location = getCurrentUrl().replace("verify_age?next_url=/", "");
            return;
        }

        // Check a couple of times to see if the required DOM element is available. If it is and the 
        // age restricted message appears to be not hidden, replace the regular player with an embedded player.
        var attempts = 0;
        var check = setInterval(function() {
            // New Youtube layout
            var el = document.getElementById('error-screen');
            if (null != el && !el.hasAttribute('hidden')) {
                document.querySelector('#player.ytd-watch').innerHTML = createEmbedString();
                clearInterval(check);
                return;
            }
            // Old Youtube layout
            el = document.getElementById('player-unavailable');
            if (null != el && !el.classList.contains('hid')) {
                document.getElementById('player-unavailable').innerHTML = createEmbedString();
                clearInterval(check);
                return;
            }

            if (++attempts > 3) {
                clearInterval(check);
            }
        }, 300);

        title = document.title;
    }
});

var config = {
    attributes: true
};
observer.observe(target, config);