您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script removes the ChatGPT start notification
// ==UserScript== // @name ChatGPT remove start notification // @namespace ChatGPT // @match https://chat.openai.com/ // @icon https://chat.openai.com/apple-touch-icon.png // @grant none // @version 1.1 // @author ccuser44 // @license CC0 // @description This script removes the ChatGPT start notification // ==/UserScript== /* To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. */ var debounce = false; function clickButton() { var foundMain = false; for (const button of document.getElementsByClassName("btn relative btn-primary")) { if (button.firstElementChild.textContent == "Okay, let’s go") { foundMain = true; button.click(); }; }; }; function onLoad() { console.log(debounce); if (!debounce) { debounce = true; clickButton(); setTimeout(clickButton, 100); for (var i = 1; i <= 6; i++) { setTimeout(clickButton, i * 500); }; }; }; if (document.readyState == "complete") { setTimeout(onLoad, 1500); } else { window.addEventListener("load", function() { setTimeout(onLoad, 1500); }, "once"); };