您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Unlocks Quillbot Premium so that you don't have to pay.
当前为
// ==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://gf.qytechs.cn/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); }; } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址