您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hides "Share" Button from Youtube Adblock Chrome Extension
当前为
// ==UserScript== // @name Youtube Hide New Adblock 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.1 // ==/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 ); })();