您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes keyboard shortcut popover and inline kbd hints on ChatGPT
// ==UserScript== // @name Hide ChatGPT Popover and Shortcut Hints // @namespace https://chat.openai.com/ // @version 1.2 // @description Removes keyboard shortcut popover and inline kbd hints on ChatGPT // @author ChiaraStellata & ChatGPT // @match *://chatgpt.com/* // @grant none // @license CC0 / public domain // ==/UserScript== (function () { const style = document.createElement('style'); style.textContent = ` /* Hide inline shortcut hints */ kbd { display: none !important; } /* Hide ONLY the bottom-left shortcuts popover (no role="menu") */ .popover.start-3.bottom-3:not([role="menu"]) { display: none !important; } `; document.head.appendChild(style); })();