您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Intercepts time sent to the server and replaces it with fake value
// ==UserScript== // @name Rosetta Stone Fake Time Interceptor // @namespace http://tampermonkey.net/ // @version 1.0 // @description Intercepts time sent to the server and replaces it with fake value // @author Dev // @match https://login.rosettastone.com/launchpad* // @grant none // ==/UserScript== (function() { 'use strict'; const originalFetch = window.fetch; window.fetch = function(resource, init) { if (init && init.body && typeof init.body === 'string' && init.body.includes('duration')) { try { let body = JSON.parse(init.body); if (body.duration) { body.duration += 3600; // زيادة ساعة (بالثواني) init.body = JSON.stringify(body); console.log('[FakeTime] duration modified to:', body.duration); } } catch (e) { console.warn('[FakeTime] Error parsing request body:', e); } } return originalFetch.apply(this, arguments); }; })();