Sleazy Fork is available in English.

Free forever

chat as many times you want it wont tell you to pay

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name        Free forever
// @namespace   Violentmonkey Scripts
// @match       https://www.genschat.com/*
// @match       https://www.characterwaifu.com/*
// @include     https://characterwaifu.com/*
// @match       https://www.aicharacterwaifu.com/*
// @include     https://aicharacterwaifu.com/*
// @grant       none
// @version     2.01
// @author      -
// @license MIT
// @description chat as many times you want it wont tell you to pay
// ==/UserScript==

(function() {
    'use strict';
window.showSubscribe = function() {

    };
  function setVip() {
        try {
            if (window._vInstance_ && window._vInstance_.$store && window._vInstance_.$store.state) {
                window._vInstance_.$store.state.isVip = true;
                console.log("isVip set to true");
            }
        } catch (e) {
            console.error("Error setting isVip:", e);
        }
    }

    // Run the function repeatedly
    setInterval(setVip, 500); // Adjust the interval (in ms) as needed
})();