Hide upgrade plan button on ChatGPT

Hide the animated, bright yellow "upgrade plan" button on ChatGPT

目前为 2023-02-10 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Hide upgrade plan button on ChatGPT
  3. // @namespace https://greasyfork.org/en/users/668659-denvercoder1
  4. // @match https://chat.openai.com/chat/*
  5. // @grant none
  6. // @version 1.0
  7. // @author Jonah Lawrence
  8. // @license MIT
  9. // @description Hide the animated, bright yellow "upgrade plan" button on ChatGPT
  10. // ==/UserScript==
  11.  
  12. (function () {
  13.  
  14. document.getElementsByTagName("head")[0].insertAdjacentHTML("beforeend", "<style>.shim-yellow { display: none; }</style>");
  15.  
  16. })();
  17.