YouTube Hide "Recommended for you" from related videos

Hides videos marked as "Recommended for you" from the related videos on YouTube video pages.

Verze ze dne 06. 06. 2016. Zobrazit nejnovější verzi.

// ==UserScript==
// @name        YouTube Hide "Recommended for you" from related videos
// @namespace   http://mathemaniac.org/
// @version     1.0.1
// @description Hides videos marked as "Recommended for you" from the related videos on YouTube video pages.
// @include     http://youtube.com/watch*
// @include     http://www.youtube.com/watch*
// @include     https://youtube.com/watch*
// @include     https://www.youtube.com/watch*
// @grant       none
// @copyright   2013-2016, Sebastian Paaske Tørholm
// @require     http://code.jquery.com/jquery-latest.min.js
// ==/UserScript==

function hideRecommended() {
    $('#watch-related li').each( function () {
        if ($("span:contains('Recommended for you')", this).length > 0) {
            $(this).remove();
        }
    });
    $('#watch-related').one('DOMSubtreeModified', hideRecommended);
}

hideRecommended();
长期地址
遇到问题?请前往 GitHub 提 Issues。