LINUX.ORG.RU

История изменений

Исправление mydibyje, (текущая версия) :

Для такого достаточно user css:

div#info>div#info-text{
  min-height:40px !important;
  -webkit-line-clamp:none !important;
}

Или скрипт:

// ==UserScript==
// @name     Unnamed Script 16852676
// @version  1
// @grant    none
// @include  *://youtube.com/*
// @include  *://*.youtube.com/*
// ==/UserScript==
(function() {
  'use strict';
  document.addEventListener("DOMNodeInserted", showdate);
  function showdate(){
    const el = document.querySelector("div#info>div#info-text");
    if(el){
      el.setAttribute("style","min-height:40px;-webkit-line-clamp:none;");
      document.removeEventListener("DOMNodeInserted", showdate);
    }
  }
})();

P.S Было бы интереснее, если бы написали какое разрешение экрана, потому что 4:3 ни о чем не говорит, с такими сторонами и 4к может быть где и на одном мониторе все прекрасно видно.

Исправление mydibyje, :

Для такого достаточно user css:

div#info>div#info-text{
  min-height:40px !important;
  -webkit-line-clamp:none !important;
}

Или скрипт:

// ==UserScript==
// @name     Unnamed Script 16852676
// @version  1
// @grant    none
// @include  *://youtube.com/*
// @include  *://*.youtube.com/*
// ==/UserScript==
(function() {
  'use strict';
  document.addEventListener("DOMNodeInserted", showdate);
  function showdate(){
    const el = document.querySelector("div#info>div#info-text");
    if(el){
      el.setAttribute("style","min-height:40px;-webkit-line-clamp:none;");
      document.removeEventListener("DOMNodeInserted", showdate);
    }
  }
})();

Исходная версия mydibyje, :

Для такого достаточно user css:

div#info>div#info-text{
  min-height:40px !important;
  -webkit-line-clamp:none !important;
}

Или скрипт:

// ==UserScript==
// @name     Unnamed Script 16852676
// @version  1
// @grant    none
// @include  *://youtube.com/*
// @include  *://*.youtube.com/*
// ==/UserScript==
(function() {
  'use strict';
  document.addEventListener("DOMNodeInserted", showdate);
  function showdate(){
    const el = document.querySelector("div#info>div#info-text");
    if(el){
      el.setAttribute("style","min-height:40px;-webkit-line-clamp:none;");
      document.removeEventListener("DOMNodeInserted", showdate);
    }
  }
})();