Monospace Font for Brave Search

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);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址