// ==UserScript== // @name Hide upgrade plan button on ChatGPT // @namespace https://greasyfork.org/en/users/668659-denvercoder1 // @match https://chat.openai.com/chat* // @grant none // @version 1.0.2 // @author Jonah Lawrence // @license MIT // @description Hide the animated, bright yellow "upgrade plan" button on ChatGPT // @downloadURL none // ==/UserScript== (function () { document.getElementsByTagName("head")[0].insertAdjacentHTML("beforeend", ""); [...document.querySelectorAll("a")].filter((a) => a.innerText.startsWith("Upgrade to Plus")).forEach((a) => a.style.display = "none") })();