Greasy Fork is available in English.

Bypass ChatGPT

bypass chatGPT khi quá tải

  1. // ==UserScript==
  2. // @name Bypass ChatGPT
  3. // @namespace https://www.facebook.com/m.a.n.h.h.ieeu
  4. // @version 0.8.1.0.1
  5. // @description bypass chatGPT khi quá tải
  6. // @author Max Stewie
  7. // @match https://chat.openai.com/auth/login
  8. // @icon https://seeklogo.com/images/C/chatgpt-logo-02AFA704B5-seeklogo.com.png
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (() => {
  13. const content = document.body.innerHTML;
  14. if(!content.includes("Welcome to ChatGPT") && !content.includes("checking")) {
  15. location.reload();
  16. return;
  17. }
  18. console.log("Mua ChatGPT liên hệ fb.com/m.a.n.h.h.ieeu ");
  19. })();