您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Apply font style to Brave Search
// ==UserScript== // @name Monospace Font for Brave Search // @namespace http://tampermonkey.net/ // @version 1.1 // @description Apply font style to Brave Search // @author You // @match https://search.brave.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Define the font style const fontStyle = 'monospace'; // Apply the font style to the entire document const style = document.createElement('style'); style.textContent = ` html, p, * { font-family: ${fontStyle} !important; } `; document.head.appendChild(style); })();