Monospace Font for Brave Search

Apply font style to Brave Search

  1. // ==UserScript==
  2. // @name Monospace Font for Brave Search
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description Apply font style to Brave Search
  6. // @author You
  7. // @match https://search.brave.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Define the font style
  16. const fontStyle = 'monospace';
  17.  
  18. // Apply the font style to the entire document
  19. const style = document.createElement('style');
  20. style.textContent = `
  21. html, p, * {
  22. font-family: ${fontStyle} !important;
  23. }
  24. `;
  25. document.head.appendChild(style);
  26. })();

QingJ © 2025

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