Quillbot Premium For Lifetime For Free

Status
Not open for further replies.
i did the steps, but how do i use quillbot premium with this?
 
Saved to test it later. Highly sceptical it actually works.
 
Not home but interested to see if this works
 
You can review the script here to make sure it is safe: https://greasyfork.org/en/scripts/456460-quillsuperbot/code


Code:
    // ==UserScript==
    // @name         quillSuperBot
    // @namespace    quillbot.taozhiyu.gitee.io
    // @version      0.1
    // @description  解锁 quillbot VIP
    // @author       涛之雨
    // @match        https://quillbot.com/*
    // @icon         https://quillbot.com/favicon.png
    // @require      https://greasyfork.org/scripts/455943-ajaxhooker/code/ajaxHooker.js?version=1124435
    // @run-at       document-start
    // @grant        none
    // @license      WTFPL
    // ==/UserScript==
    /* global ajaxHooker*/
    (function() {
        'use strict';
        // cxxjackie 牛逼*2
        ajaxHooker.hook(request => {
            if (request.url.endsWith('get-account-details')) {
                request.response = res => {
                    const json=JSON.parse(res.responseText);
                    const a="data" in json?json.data:json;
                    a.profile.accepted_premium_modes_tnc=true;
                    a.profile.premium=true;
                    res.responseText=JSON.stringify("data" in json?(json.data=a,json):a);
                };
            }
        });
    })();
 
You can review the script here to make sure it is safe: https://greasyfork.org/en/scripts/456460-quillsuperbot/code


Code:
    // ==UserScript==
    // @name         quillSuperBot
    // @namespace    quillbot.taozhiyu.gitee.io
    // @version      0.1
    // @description  解锁 quillbot VIP
    // @author       涛之雨
    // @match        https://quillbot.com/*
    // @icon         https://quillbot.com/favicon.png
    // @require      https://greasyfork.org/scripts/455943-ajaxhooker/code/ajaxHooker.js?version=1124435
    // @run-at       document-start
    // @grant        none
    // @license      WTFPL
    // ==/UserScript==
    /* global ajaxHooker*/
    (function() {
        'use strict';
        // cxxjackie 牛逼*2
        ajaxHooker.hook(request => {
            if (request.url.endsWith('get-account-details')) {
                request.response = res => {
                    const json=JSON.parse(res.responseText);
                    const a="data" in json?json.data:json;
                    a.profile.accepted_premium_modes_tnc=true;
                    a.profile.premium=true;
                    res.responseText=JSON.stringify("data" in json?(json.data=a,json):a);
                };
            }
        });
    })();
Looks safe , its using a function to set premium modes true will try this out
 
Status
Not open for further replies.
Back
Top