Skip to content

Instantly share code, notes, and snippets.

@popkirby
Created August 31, 2013 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save popkirby/6398164 to your computer and use it in GitHub Desktop.
Save popkirby/6398164 to your computer and use it in GitHub Desktop.
NicoCommentVanisher
// ==UserScript==
// @name NicoCommentVanisher
// @version 1.0
// @description ^-^
// @include http://www.nicovideo.jp/watch/*
// ==/UserScript==
(function(){
var player = document.getElementById("external_nicoplayer");
if (!!player) {
setTimeout(function() {
player.ext_setCommentVisible(false);
}, 1000);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment