B站字体修复

让B站视频详情页字体改成微软雅黑,解决字体模糊的问题。

  1. // ==UserScript==
  2. // @name B站字体修复
  3. // @description 让B站视频详情页字体改成微软雅黑,解决字体模糊的问题。
  4. // @version 1.0.0
  5. // @namespace 让B站字体改成微软雅黑
  6. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  7. // @author 会说话的鱼
  8. // @include *bilibili.com/video/*
  9. // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js
  10. // @run-at document-start
  11. // @grant none
  12. // @license MIT
  13. // @rewritten_script_code javascript
  14. // ==/UserScript==
  15.  
  16. (function () {
  17. 'use strict';
  18. $(function () {
  19. init();
  20. });
  21. })();
  22.  
  23. function init() {
  24. var append_html = '<style type="text/css">'+
  25. 'body {'+
  26. ' font-family: Microsoft YaHei !important;'+
  27. '}'+
  28. '</style>';
  29. $('body').append(append_html);
  30. }

QingJ © 2025

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