Hide ChatGPT Sidebar

Hide the sidebar of the ChatGPT website

目前为 2023-03-06 提交的版本。查看 最新版本

// ==UserScript==
// @name         Hide ChatGPT Sidebar
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Hide the sidebar of the ChatGPT website
// @author       You
// @match        https://chat.openai.com/chat
// @icon         https://www.google.com/s2/favicons?sz=64&domain=openai.com
// @require https://code.jquery.com/jquery-3.6.0.min.js
// @grant        none

// ==/UserScript==

(function() {
    'use strict';

    $('#__next > div.overflow-hidden.w-full.h-full.relative > div.dark').hide();
    $('#__next > div.overflow-hidden.w-full.h-full.relative > div.flex.h-full').css('padding-left', '0px');

})();

QingJ © 2025

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