Hide upgrade plan button on ChatGPT

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

La data de 14-02-2023. Vezi ultima versiune.

// ==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.3
// @author      Jonah Lawrence
// @license     MIT
// @description Hide the animated, bright yellow "upgrade plan" button on ChatGPT
// ==/UserScript==

(function () {
    document.getElementsByTagName("head")[0].insertAdjacentHTML(
        "beforeend",
        `<style>
			.shim-yellow,
			.gold-new-button,
			.gold-new-button ~ span {
					display: none;
			}

			nav > div ~ a.rounded-md {
					padding: 0;
					margin: 0px !important;
			}

			nav > div > div > a.rounded-md {
					padding-top: 0.25em;
					padding-bottom: 0.25em;
			}

			nav > div ~ a.rounded-md > svg {
					margin: 0.5em;
			}
		</style>`
    );
})();