网站高分屏优化(By HWlabs)

几个 AI 网站的高分屏优化

  1. // ==UserScript==
  2. // @name 网站高分屏优化(By HWlabs)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.4
  5. // @description 几个 AI 网站的高分屏优化
  6. // @author HWlabs
  7. // @match https://smartwritegpt.com/*
  8. // @match https://kimi.moonshot.cn/*
  9. // @match https://tongyi.aliyun.com/*
  10. // @grant none
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. var style = document.createElement('style');
  17. if (window.location.hostname === 'smartwritegpt.com'){
  18. style.innerHTML = `
  19. body {
  20. font-size: inherit !important;
  21. }
  22. .markdown-it-container .markdown-body {
  23. font-size: inherit;
  24. }
  25. .session[data-v-82258242]{
  26. width: inherit;
  27. }
  28. `;
  29. }else if (window.location.hostname === 'kimi.moonshot.cn'){
  30. style.innerHTML = `
  31. body {
  32. font-size: inherit !important;
  33. }
  34. .css-p94avn{
  35. font-size: inherit !important;
  36. }
  37. .markdown___BV5oI{
  38. font-size: inherit !important;
  39. }
  40. .markdown___Ho3m0{
  41. font-size: inherit !important;
  42. }
  43. .css-1x6e6a7{
  44. max-width: 60% !important;
  45. }
  46. `;
  47. }else if (window.location.hostname === 'tongyi.aliyun.com'){
  48. style.innerHTML = `
  49. body {
  50. font-size: inherit !important;
  51. }
  52. .side--ZR10Ab5M{
  53. width: inherit !important;
  54. }
  55. `;
  56. }
  57. document.head.appendChild(style);
  58. })();

QingJ © 2025

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