Brave Search – Disable WebKit Line Clamp

Remove any -webkit-line-clamp truncation in Brave Search results

Από την 03/05/2025. Δείτε την τελευταία έκδοση.

// ==UserScript==
// @name        Brave Search – Disable WebKit Line Clamp
// @description Remove any -webkit-line-clamp truncation in Brave Search results
// @match       https://search.brave.com/*
// @run-at      document-start
// @version 0.0.1.20250503122909
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
  const css = `
    [class*="line-clamp"] {
      -webkit-line-clamp: none !important;
    }
  `;
  const style = document.createElement('style');
  style.textContent = css;
  document.head.appendChild(style);
})();