Wrap Texts in a Comment List

Nico Live

Ekde 2020/03/22. Vidu La ĝisdata versio.

// ==UserScript==
// @name            Wrap Texts in a Comment List
// @name:ja         一覧の長文コメントを折り返す
// @namespace       https://greasyfork.org/users/19523
// @version         0.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-text___2cPL0 {' +
      'white-space: initial !important;' +
    '}' +
    '.___cell___3bYIQ {' +
      'white-space: initial !important;' +
    '}' +
    ''));
  document.getElementsByTagName('head')[0].appendChild(style);
})();