Warning: fopen(/www/sites/greasyfork.cloud/index/store/forever/c40361b7f82bc77597f0040cecffe675.html): failed to open stream: No space left on device in /www/sites/greasyfork.cloud/index/scriptsControl.php on line 127
ニコニコ動画 コメント非表示 - 源代码

Greasy Fork

ニコニコ動画 コメント非表示

ニコニコ動画のコメントをデフォルトで非表示にするスクリプトです

当前为 2024-08-06 提交的版本,查看 最新版本

// ==UserScript==
// @name        ニコニコ動画 コメント非表示
// @namespace   ncode
// @match     https://www.nicovideo.jp/watch/*
// @version     8
// @description ニコニコ動画のコメントをデフォルトで非表示にするスクリプトです
// @grant       none
// ==/UserScript==
var script = document.createElement('script');
script.innerHTML = "let timer = setInterval(function() {"+
    "try {"+
        "let buttons = document.getElementsByClassName('cursor_pointer');"+
        "for(let i = 0;buttons.length;i++) {"+
            "if (buttons[i].getAttribute('aria-label') == 'コメントを非表示') {"+
                "buttons[i].click();"+
                "clearInterval(timer);"+
                "break;"+
            "}"+
        "}"+
    "} catch(e) {"+
    "}"+
"}, 1500);";
document.body.appendChild(script);