Hide the sidebar of the ChatGPT website
当前为
// ==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');
})();