Remove ChatGPT Bottom Bar

Adds a button to Tampermonkey to remove ChatGPT's bottom bar for easy clipping or making full-page screenshots. To use it, open any chat in ChatGPT, press on Tampermonkey Icon and then click "Remove Bottom Input Bar".

  1. // ==UserScript==
  2. // @name Remove ChatGPT Bottom Bar
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Adds a button to Tampermonkey to remove ChatGPT's bottom bar for easy clipping or making full-page screenshots. To use it, open any chat in ChatGPT, press on Tampermonkey Icon and then click "Remove Bottom Input Bar".
  6. // @author psxvoid
  7. // @match https://chat.openai.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=chat.openai.com
  9. // @grant GM_registerMenuCommand
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. GM_registerMenuCommand('Remove Bottom Input Bar', () => {
  17. document.getElementsByTagName("form")[0].parentElement.remove();
  18. }, 'r');
  19. })();

QingJ © 2025

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