您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name YoutubeCommentsRemover // @namespace http://tampermonkey.net/ // @version 0.51 // @description try to take over the world! // @author Acguy // @match https://www.youtube.com/* // @grant none // @@licence MIT // ==/UserScript== (function() { 'use strict'; console.log("YoutubeCommentsRemover."); let isDisplayNone = false; let timer; let nowLocate document.addEventListener('yt-navigate-finish', (event) => { console.log("yt-navigate-finish"); console.log("nowLocate: ", nowLocate, " location:", location.href); if(nowLocate && nowLocate != location.href) { console.log("location changed!!"); location.reload(); } nowLocate = location.href; console.log("setLocate: ", nowLocate); }); timer = setInterval(()=>{ if(isDisplayNone) { stopTimer(); } let frame = document.querySelector('#chatframe'); if(frame && frame.contentWindow) { console.info("frame Find!!!"); const elem = frame.contentWindow.document.querySelector('#chat'); if(elem && elem.style) { console.info("elem Find!!!"); elem.style.display="none"; isDisplayNone = true; } } }, 100); function stopTimer() { if(timer) { clearInterval(timer); } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址