您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This is a challenge script. Use it if you want every zone to look like ? zone. Be careful!!! You can get overleveled if you don't look at the map in the bottom right corner.
// ==UserScript== // @name Every zone is ? // @namespace TankScript // @match https://florr.io/* // @grant unsafeWindow // @version Dev 0.5_1 // @author - // @description This is a challenge script. Use it if you want every zone to look like ? zone. Be careful!!! You can get overleveled if you don't look at the map in the bottom right corner. // ==/UserScript== const proxy = new Proxy(unsafeWindow.HTMLCanvasElement.prototype.getContext, { apply(target, thisArg, args) { const ctx = Reflect.apply(...arguments); const prototype = Object.getPrototypeOf(ctx); const descriptors = Object.getOwnPropertyDescriptors(prototype); Object.defineProperties(prototype, { fillStyle: { get() { // console.log("Getting fillStyle"); return descriptors.fillStyle.get.call(this); }, set(value) { // console.log(Setting fillStyle to ${value}); if (value == "#1EA761") value = "#4D5E56" if (value == "#DECF7C") value = "#4D5E56" if (value == "#B06655") value = "#4D5E56" if (value == "#4D5E56") value = "#4D5E56" descriptors.fillStyle.set.call(this, value); } } }); return ctx; } }); unsafeWindow.HTMLCanvasElement.prototype.getContext = proxy;
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址