Microsoft Copilot 字体优化

强制 Microsoft Copilot 的字体为系统字体

  1. // ==UserScript==
  2. // @name Microsoft Copilot font family fix
  3. // @name:zh-CN Microsoft Copilot 字体优化
  4. // @namespace http://banmiya.com/tamper/bingchat
  5. // @version 1.0.2
  6. // @description Force set Microsoft Copilot font family as system-ui font
  7. // @description:zh-CN 强制 Microsoft Copilot 的字体为系统字体
  8. // @author Zhoumin
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=gf.qytechs.cn
  10. // @match https://www.bing.com/chat*
  11. // @match https://www.bing.com/search*
  12. // @match https://bing.com/chat*
  13. // @match https://bing.com/search*
  14. // @match https://copilot.microsoft.com/*
  15. // @grant GM_addStyle
  16. // @grant unsafeWindow
  17. // @license MIT
  18. // ==/UserScript==
  19.  
  20. (function() {
  21. 'use strict';
  22.  
  23. GM_addStyle(':root{--cib-font-text: system-ui!important;}')
  24. })();

QingJ © 2025

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