Brave css

a

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        Brave css
// @description a
// @match       https://search.brave.com/*
// @run-at      document-start
// @version 0.0.1.20260126130853
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function () {
    const css = `
* {
  gap: unset !important;
  overflow-wrap: anywhere !important;
}

*:not(#primary-tabs *) {
  white-space: revert !important;
}

/* Disable WebKit line clamping */
[class*="line-clamp"] {
  -webkit-line-clamp: none !important;
}

/* Ensure result descriptions aren’t hidden */
.desc {
  display: block !important;
}

.result-content.svelte-16hzhkl {
  display: block;
}

/* Allow title wrapping normally
    .title.svelte-yo6adg {
      white-space: normal !important;
    }*/

.title {
  white-space: revert !important;
}

aside {
  display: none !important;
}

a:has(> div.image-wrapper) {
  display: inline-block !important;
}
  `;
    const style = document.createElement('style');
    style.textContent = css;
    document.head.appendChild(style);
})();