Hide ChatGPT Header

隐藏 https://chatgpt.com/ 页面顶部的共享栏

  1. // ==UserScript==
  2. // @name Hide ChatGPT Header
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 隐藏 https://chatgpt.com/ 页面顶部的共享栏
  6. // @match https://chatgpt.com/*
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12.  
  13. // 查找并隐藏目标元素
  14. const header = document.querySelector('.draggable.sticky.top-0.z-10.flex.min-h-[60px].items-center.justify-center.border-transparent.bg-token-main-surface-primary.pl-0.md\\:hidden');
  15. if (header) {
  16. header.style.display = 'none';
  17. }
  18. })();

QingJ © 2025

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