Youtube Adblock Chrome Extension Hide Share Button

Hides "Share" Button from Youtube Adblock Chrome Extension

目前为 2019-03-18 提交的版本。查看 最新版本

// ==UserScript==
// @name          Youtube Adblock Chrome Extension Hide Share Button
// @namespace     http://userstyles.org
// @description   Hides "Share" Button from Youtube Adblock Chrome Extension
// @description   https://chrome.google.com/webstore/detail/adblock-for-youtube/cmedhionkhpnakcndndgjdbohmhepckk
// @author        636597
// @include       *://*youtube.com/*
// @run-at        document-start
// @version       0.2
// ==/UserScript==

(function() {
    var ready = setInterval(function(){
        var x1 = document.getElementById( "ab4yt-brand" );
        if ( x1 ) { if ( x1 ) { x1.setAttribute("style", "visibility: hidden !important"); clearInterval( ready ); } }
    } , 2 );
    setTimeout( function() {
        clearInterval( ready );
    } , 50000 );
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址