Exhentai Resource Han Rounded

更换资源圆体字体Ex

  1. // ==UserScript==
  2. // @name Exhentai Resource Han Rounded
  3. // @author 100497
  4. // @match *://*.exhentai.org/*
  5. // @match *://*.hath.network/*
  6. // @grant none
  7. // @namespace Exhentai Resource Han Rounded
  8. // @version 2024.08.14
  9. // @description 更换资源圆体字体Ex
  10. // @license MIT
  11. // @icon https://cdn-icons-png.flaticon.com/128/2584/2584606.png
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. const style = document.createElement('style');
  16. style.textContent = `
  17. /*字体名称*/
  18. * {
  19. font-family: "Resource Han Rounded CN" !important;
  20. }
  21.  
  22. /*字体大小*/
  23. * {
  24. font-size: 16px !important;
  25. }
  26.  
  27. /*字体颜色*/
  28. /*
  29. * {
  30. color: #000000 !important;
  31. }
  32. */
  33.  
  34. /*字体加粗*/
  35. /*
  36. * {
  37. font-weight: bold !important;
  38. }
  39. */
  40.  
  41. /*字体粗细(整百数字)*/
  42. * {
  43. font-weight: 600 !important;
  44. }
  45. `;
  46. document.head.append(style);
  47. })();