Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/79da52576a8a2a5468588c272569186f.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript== // @name ニコニコ動画 コメント非表示 // @namespace ncode // @match https://www.nicovideo.jp/watch/* // @version 6 // @description ニコニコ動画のコメントをデフォルトで非表示にするスクリプトです // @grant none // @downloadURL 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) {"+ "}"+ "}, 500);"; document.body.appendChild(script);