Hide youtube google ad

hide youtube google ad

2018-02-05 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

// ==UserScript==
// @name               Hide youtube google ad
// @name:zh-CN         隐藏youtube google广告
// @namespace          vince.youtube
// @version            1.0
// @description        hide youtube google ad
// @description:zh-CN  隐藏youtube显示的google广告
// @author             vince ding
// @match              https://www.youtube.com/*
// ==/UserScript==

function closeAd(){
    var css = '.ad-container,#player-ads{ display: none!important; }',
        head = document.head || document.getElementsByTagName('head')[0],
        style = document.createElement('style');

    style.type = 'text/css';
    if (style.styleSheet){
        style.styleSheet.cssText = css;
    } else {
        style.appendChild(document.createTextNode(css));
    }

    head.appendChild(style);
}

closeAd();