去除弹窗

Hides elements with ids "popup-overlay" and "popup"

// ==UserScript==
// @name         去除弹窗
// @version      1
// @description  Hides elements with ids "popup-overlay" and "popup"
// @match        https://chatgpt6.com/*
// @grant        GM_addStyle
// @namespace https://greasyfork.org/users/1068094
// ==/UserScript==

(function() {
    'use strict';
    GM_addStyle("#popup-overlay { display: none !important; }");

    GM_addStyle("#popup { display: none !important; }");
})();