Meu filho youtube

gok é fodao

目前为 2023-10-09 提交的版本。查看 最新版本

// ==UserScript==
// @name         Meu filho youtube
// @version      v1.1
// @description  gok é fodao
// @author       gok
// @match        *://*youtube.com/*
// @license      MIT
// @grant        none
// @noframes
// @namespace https://greasyfork.org/users/1189822
// ==/UserScript==


function onYouTubeIframeAPIReady() {
  
  var adBlockNotice = document.querySelector(".ytd-adblock-notice");

 
  if (adBlockNotice) {
    adBlockNotice.parentNode.removeChild(adBlockNotice);
  }
}


window.addEventListener("YouTubeIframeAPIReady", onYouTubeIframeAPIReady);