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