Netfilx prettier font

Use Microsoft JhengHei as Netfilx font.

  1. // ==UserScript==
  2. // @name Netfilx prettier font
  3. // @description Use Microsoft JhengHei as Netfilx font.
  4. // @namespace nathan60107
  5. // @author nathan60107(貝果)
  6. // @version 1.0.0
  7. // @homepage https://home.gamer.com.tw/creationCategory.php?owner=nathan60107&c=425332
  8. // @match https://www.netflix.com/watch/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=netflix.com
  10. // @grant none
  11. // @noframes
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. let fontStyle = `
  18. .player-timedtext-text-container * {
  19. font-family: "Microsoft JhengHei" !important
  20. }
  21. `;
  22. let newStyle = document.createElement("style");
  23. newStyle.innerHTML = fontStyle;
  24. document.head.appendChild(newStyle);
  25. })();

QingJ © 2025

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