您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bring back the old colors/style in OpenAI Chat
// ==UserScript== // @name OpenAI Chat Old Colors // @namespace http://tampermonkey.net/ // @version 1.5 // @description Bring back the old colors/style in OpenAI Chat // @author Clavilux // @match https://chat.openai.com/* // @grant GM_addStyle // @license MIT // ==/UserScript== (function() { 'use strict'; const customStyles = ` :root { --gray-900: #000; --gray-700: #3f3f4b; --gray-800: #343541; } .items-start { margin-left: 5.90px; } .dark.bg-gray-950.rounded-md { background-color: black; } `; const cred = document.createElement('div'); cred.textContent = 'ChatGPT Old Style by Clavilux'; cred.style.fontSize = '6px'; cred.style.color = '#888'; cred.style.position = 'fixed'; cred.style.bottom = '5px'; cred.style.right = '5px'; document.body.appendChild(cred); GM_addStyle(customStyles); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址