How to get Quill Bot Premium For Free

Status
Not open for further replies.

cve47

Junior Member
Joined
Jul 18, 2023
Messages
136
Reaction score
95
Hello friends,

I wanted to share a little trick that I think many of you might already use, but I wanted to contribute to the community.

How to Get Premium QuillBot for Free

  1. First, download this extension: Violet Monkey.

1716275887848.png


Go on dashboard and add a new script

1716275911652.png

--------
Add this code :
Code:
[CODE=json]// ==UserScript==

// @name         Quillbot Premium Unlocker

// @namespace    quillbot.taozhiyu.gitee.io

// @version      0.2

// @description  Unlocks Quillbot Premium so that you don't have to pay.

// @author       longkidkoolstar

// @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      none

// @downloadURL https://update.greasyfork.org/scripts/465276/Quillbot%20Premium%20Unlocker.user.js

// @updateURL https://update.greasyfork.org/scripts/465276/Quillbot%20Premium%20Unlocker.meta.js

// ==/UserScript==

/* global ajaxHooker*/

(function() {

    'use strict';

    // How's it going filthy code looker

    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);

            };

        }

    });

})();



[/CODE]
 
Is this working? Because i have applied these all steps but they are processing but i haven't get my results.

Ya it's showing quillbot premium in logo but these premium functions are not working.
 
Is this working? Because i have applied these all steps but they are processing but i haven't get my results.

Ya it's showing quillbot premium in logo but these premium functions are not working.
try to log out and log back in
 
seems only showing premium version but function is free version
 
Status
Not open for further replies.
Back
Top