/*
* @title N ±noise
* @description toggle comments visibility on flash-free Nicovideo
* @include http://sp.nicovideo.jp/watch/*
* @license MIT http://opensource.org/licenses/MIT
* @javascript_url
*/
// TBD bind to UI
(function () {
var board = document.body.querySelector('#jsPlayerComment');
if (!board) return;
board.hidden = !board.hidden;
})();