Hide ChatGPT Popover and Shortcut Hints

Removes keyboard shortcut popover and inline kbd hints on ChatGPT

目前為 2025-07-27 提交的版本,檢視 最新版本

// ==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);
})();

QingJ © 2025

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