Hide ChatGPT Sidebar

Hide the sidebar of the ChatGPT website

当前为 2023-03-06 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Hide ChatGPT Sidebar
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Hide the sidebar of the ChatGPT website
  6. // @author You
  7. // @match https://chat.openai.com/chat
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=openai.com
  9. // @require https://code.jquery.com/jquery-3.6.0.min.js
  10. // @grant none
  11.  
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. $('#__next > div.overflow-hidden.w-full.h-full.relative > div.dark').hide();
  18. $('#__next > div.overflow-hidden.w-full.h-full.relative > div.flex.h-full').css('padding-left', '0px');
  19.  
  20. })();

QingJ © 2025

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