您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Revert scrollbar
当前为
// ==UserScript== // @name AI Studio Mod - Revert Scrollbar Update // @namespace https://greatest.deepsurf.us/users/137913 // @description Revert scrollbar // @author TigerYT // @version 1.0.0 // @match *://aistudio.google.com/prompts/* // @icon https://www.gstatic.com/aistudio/ai_studio_favicon_2_32x32.png // @grant none // ==/UserScript== (function() { 'use strict'; let head = document.head || document.getElementsByTagName('head')[0]; if (head) { let style = document.createElement('style'); style.type = 'text/css'; style.textContent = ` ms-autoscroll-container:not(#_) { /* Gives +1 Free ID Specificity Point */ overflow: visible; } ms-prompt-scrollbar { display: none; } `; head.append(style); }; })();