🏠 Home 

Show timestamps in a Comment List

Nico Live


Install this script?
// ==UserScript==
// @name            Show timestamps in a Comment List
// @name:ja         コメント一覧に書き込み時間を表示する
// @namespace       https://greasyfork.org/users/19523
// @version         0.1.1
// @description     Nico Live
// @description:ja  ニコニコ生放送でコメント一覧の各コメントにコメントした時間を表示する
// @match           https://live2.nicovideo.jp/watch/*
// @grant           none
// ==/UserScript==
(function () {
var style = document.createElement('style');
style.type = 'text/css';
style.appendChild(document.createTextNode('' +
'.___comment-time___1sDyW {' +
'display: initial;' +
'}' +
'.___table-cell___3E0rV {' +
'width: 99% !important;' +
'}' +
''));
document.getElementsByTagName('head')[0].appendChild(style);
})();