Forefront Chat Limit bypass

Simple script to clear local storage for the Forefront Chat website for unlimited use. Note: This script sign-out you if you are logged in.

目前為 2023-06-04 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Forefront Chat Limit bypass
// @version      1
// @license MIT
// @description  Simple script to clear local storage for the Forefront Chat website for unlimited use. Note: This script sign-out you if you are logged in.
// @author       Pro-Fessional
// @match        *://chat.forefront.ai/*
// @grant        none
// @run-at       document-start
// @namespace https://greasyfork.org/users/1090501
// ==/UserScript==

(function () {
    'use strict';
    localStorage.clear();
     sessionStorage.clear();
})();