隐藏youtube显示的google广告
当前为
// ==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();