Chat Limit bypass to Free GPT-4/GPT-3.5 Providers

Simple script to clear local storage for the Chat website for unlimited use.

  1. // ==UserScript==
  2. // @name Chat Limit bypass to Free GPT-4/GPT-3.5 Providers
  3. // @version 1.1
  4. // @license MIT
  5. // @description Simple script to clear local storage for the Chat website for unlimited use.
  6. // @author Pro-Fessional
  7. // @match *://chat.forefront.ai/*
  8. // @match *://liaobots.com/*
  9. // @match *://chat-gpt.org/*
  10. // @grant none
  11. // @run-at document-start
  12. // @namespace https://greasyfork.org/users/1090501
  13. // ==/UserScript==
  14.  
  15. (function () {
  16. 'use strict';
  17. localStorage.clear();
  18. sessionStorage.clear();
  19. })();