您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Verify yourself in Poxel.io (made by the Kour.io developers)
// ==UserScript== // @name Poxel.io FREE Premium // @namespace http://tampermonkey.net/ // @version 1.0 // @description Verify yourself in Poxel.io (made by the Kour.io developers) // @author Poxel Black Market // @match *://*poxel.io/* // @grant none // ==/UserScript== (function() { 'use strict'; const originalFetch = window.fetch; window.fetch = async function(input, init) { const url = typeof input === 'string' ? input : input.url; if (/poxel\.io\/api\/accounts\/profile$/.test(url)) { const response = await originalFetch(input, init); const clone = response.clone(); const text = await clone.text(); const data = JSON.parse(text); data.premiumEnds = "2031-01-01T00:00:00.000Z"; const modifiedResponse = new Response(JSON.stringify(data), { status: response.status, statusText: response.statusText, headers: response.headers }); return modifiedResponse; } return originalFetch(input, init); }; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址