Skip to content

Instantly share code, notes, and snippets.

@Unknown240
Last active December 26, 2023 07:09
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Unknown240/29db2d8de79036e868cda92a559b45bb to your computer and use it in GitHub Desktop.
Save Unknown240/29db2d8de79036e868cda92a559b45bb to your computer and use it in GitHub Desktop.
Hack Quillbot Premium For Chrome with Tampermonkey
// ==UserScript==
// @name Quillbot Premium Unlocker
// @namespace quillbot.taozhiyu.gitee.io
// @version 0.1
// @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 WTFPL
// ==/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);
};
}
});
})();
@lakshits11
Copy link

hello this is not working :(

@joezhouchenye
Copy link

Thanks, it is working for me.

@lakshits11
Copy link

i am uing violent monkey, will it work now?

@joezhouchenye
Copy link

I am using tamper monkey with edge. Have you logged in first?

image

@lakshits11
Copy link

Thank you for your service, it worked.

@PlatFlat
Copy link

I think is not working beside Standard and Fluency modes, an error will show up.

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment