Greasy Fork is available in English.

Taming.io Anti Caracal Ability

Removes brown background when caracal ability is enabled


ติดตั้งสคริปต์นี้?
สคริปต์ที่แนะนำของผู้เขียน

คุณอาจชื่นชอบ Dsync Client [Sploop.io]


ติดตั้งสคริปต์นี้
  1. // ==UserScript==// @name Taming.io Anti Caracal Ability// @author Murka// @description Removes brown background when caracal ability is enabled// @icon https://taming.io/img/interface/favicon.png// @version 0.1// @match *://taming.io/*// @run-at document-start// @grant none// @license MIT// @namespace https://gfork.dahi.icu/users/919633// ==/UserScript==/* jshint esversion:6 *//*Author: MurkaGithub: https://github.com/Murka007Discord: https://discord.gg/sG9cyfGPj5Greasyfork: https://greasyfork.org/en/users/919633*/(function() {"use strict";CanvasRenderingContext2D.prototype.fillRect = new Proxy(CanvasRenderingContext2D.prototype.fillRect, {apply(target, _this, args) {if (_this.fillStyle === "#3a322c") return null;return target.apply(_this, args);}})})();