// ==UserScript== // @name lottielab 解锁 // @namespace http://tampermonkey.net/ // @version 2025-09-06 // @description lottielab 去水印,解锁画质等 // @author 涛之雨 // @match https://www.lottielab.com/* // @icon http://lottielab.com/favicon.ico // @require https://scriptcat.org/lib/637/1.4.8/ajaxHooker.js?sha384-totgFWqK9CTgaDR/gOSIizXzxC0ohuBlDHHpIMToFSeegnFyV2MsM9GlfFMLropx // @grant none // @run-at document-start // ==/UserScript== /* global ajaxHooker*/ (function() { 'use strict'; ajaxHooker.filter([ {url: "api.lottielab.com"}, ]); ajaxHooker.hook(request => { if (request.url.match('/api/v1/me')) { request.response = res => { res.json.is_exempt_from_billing=true }; } }); })();