ChatGPT Hide Reasoning

Hide the GPT reasoning so that if it constantly is expanded you finally can live in peace

  1. // ==UserScript==
  2. // @name ChatGPT Hide Reasoning
  3. // @namespace ChatGPT Tools by Vishanka
  4. // @version 0.1
  5. // @description Hide the GPT reasoning so that if it constantly is expanded you finally can live in peace
  6. // @author Vishanka
  7. // @license Proprietary
  8. // @match https://chatgpt.com/*
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. GM_addStyle(`
  16. .mb-4.border-l-2.pl-4.dark\\:border-token-text-secondary {
  17. display: none !important;
  18. }
  19. `);
  20. })();