YouTube Comment Remover

YouTubeのコメント欄を非表示にする

// ==UserScript==
// @name         YouTube Comment Remover
// @namespace    Violentmonkey Scripts
// @version      1.0
// @description  YouTubeのコメント欄を非表示にする
// @match        https://www.youtube.com/*
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function() {
    'use strict';

    const observer = new MutationObserver(() => {
        const comments = document.getElementById('comments');
        if (comments) {
            comments.style.display = 'none';
        }
    });

    observer.observe(document.body, { childList: true, subtree: true });
})();

QingJ © 2025

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