Remove any -webkit-line-clamp truncation in Brave Search results
当前为
// ==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://greatest.deepsurf.us/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);
})();