您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
hide chat & name
// ==UserScript== // @name hide chat & names // @namespace http://tampermonkey.net/ // @version 0.1 // @description hide chat & name // @author nguyen33kk // @match https://sploop.io/ // @icon https://www.google.com/s2/favicons?sz=64&domain=sploop.io // @grant none // ==/UserScript== const { fillText, strokeText, drawImage } = CanvasRenderingContext2D.prototype; CanvasRenderingContext2D.prototype.fillText = function(text, x, y) { if (this.fillStyle != '#8ecc51' && text.length > 0 && text.charAt(0) != "[" && text.charAt(text.length - 1) != "]" && y == 19) { return; } fillText.apply(this, arguments); } CanvasRenderingContext2D.prototype.strokeText = function(text, x, y) { if (this.fillStyle != '#8ecc51' && text.length > 0 && text.charAt(0) != "[" && text.charAt(text.length - 1) != "]" && y == 19) { return; } strokeText.apply(this, arguments); } TextDecoder.prototype.decode = function() { return ""; }