ChatGPT Capacity Bypass

A simple script to automatically bypass the "ChatGPT is at Capacity" screen.

目前为 2023-02-08 提交的版本。查看 最新版本

// ==UserScript==
// @name        ChatGPT Capacity Bypass
// @namespace   https://flawcra.cc/
// @match       https://chat.openai.com/auth/login
// @grant       none
// @version     1.0.0
// @author      FlawCra
// @license     Apache License 2.0
// @description A simple script to automatically bypass the "ChatGPT is at Capacity" screen.
// ==/UserScript==

(() => {
  const content = document.body.innerHTML;
  if(!content.includes("Welcome to ChatGPT") && !content.includes("checking")) {
    location.reload();
    return;
  }
  console.log("ChatGPT Capacity bypassed!");
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址