0% found this document useful (0 votes)
207 views1 page

Premium Script

This document is a userscript designed to unlock VIP features of QuillBot for free. It uses the ajaxHooker library to intercept requests to the 'get-account-details' endpoint and modifies the response to grant premium access. The script is intended for use on the QuillBot website and is released under the MIT license.

Uploaded by

bestreach123
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
207 views1 page

Premium Script

This document is a userscript designed to unlock VIP features of QuillBot for free. It uses the ajaxHooker library to intercept requests to the 'get-account-details' endpoint and modifies the response to grant premium access. The script is intended for use on the QuillBot website and is released under the MIT license.

Uploaded by

bestreach123
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

// == UserScript==

// @name QuillBot VIP Unlocker


// @namespace techtactics
// @version 0.1
// @descrption Unlock QuillBot VIP features for free
// @author BestBass01
// @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 MIT
// ==/UserScript==

/* global ajaxHooker */
(function() {
'use strict';
ajaxHooker.hook(request=>{
if (request.url.endsWith('get-account-details')) {
request.response = res => {
const json = JSON.parse(re.responseText);
const data = "data" in json ? json.data : json;
data.profile.accepted_premium_modes_tnc = true;
data.profile.premium = true;
res.responseText = JSON.stringify("data" in json ? (json.data = data, json) :
data);
};
}
});
})();

You might also like