Nico Live
当前为
// ==UserScript==
// @name Show timestamps in a Comment List
// @name:ja コメント一覧に書き込み時間を表示する
// @namespace https://greasyfork.org/users/19523
// @version 0.1.0
// @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;' +
'}' +
''));
document.getElementsByTagName('head')[0].appendChild(style);
})();