您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
几个 AI 网站的高分屏优化
// ==UserScript== // @name 网站高分屏优化(By HWlabs) // @namespace http://tampermonkey.net/ // @version 0.4 // @description 几个 AI 网站的高分屏优化 // @author HWlabs // @match https://smartwritegpt.com/* // @match https://kimi.moonshot.cn/* // @match https://tongyi.aliyun.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; var style = document.createElement('style'); if (window.location.hostname === 'smartwritegpt.com'){ style.innerHTML = ` body { font-size: inherit !important; } .markdown-it-container .markdown-body { font-size: inherit; } .session[data-v-82258242]{ width: inherit; } `; }else if (window.location.hostname === 'kimi.moonshot.cn'){ style.innerHTML = ` body { font-size: inherit !important; } .css-p94avn{ font-size: inherit !important; } .markdown___BV5oI{ font-size: inherit !important; } .markdown___Ho3m0{ font-size: inherit !important; } .css-1x6e6a7{ max-width: 60% !important; } `; }else if (window.location.hostname === 'tongyi.aliyun.com'){ style.innerHTML = ` body { font-size: inherit !important; } .side--ZR10Ab5M{ width: inherit !important; } `; } document.head.appendChild(style); })();