Comment by Sammi

3 days ago

I use the Stylus[0] extension with this style in order to fix it:

  ytd-rich-item-renderer {
      max-width: 265px;
  }

  /* Show full length title instead of ellipsis cutoff at two lines. */
  a.yt-lockup-metadata-view-model__title {
      display: inline !important;
  }

[0] https://chromewebstore.google.com/detail/stylus/clngdbkpkpee...

If you've already got uBlockOrigin then you can add this to it instead of another extension. Add these filters:

  youtube.com##.ytd-rich-item-renderer:style(max-width:265px; !important;)
  youtube.com##.yt-lockup-metadata-view-model__title:style(display:inline; !important;)

  • Thanks. That let me remove an extension from my browser, which was great.

    But the filters actually need to be like this:

      youtube.com##ytd-rich-item-renderer{max-width:265px; !important;}
      youtube.com##yt-lockup-metadata-view-model__title{display:inline; !important;}