Greasy Fork

来自缓存

Greasy Fork is available in English.

Diep.io Simple Colors Theme

Change the setting of Diep.io to simple colors theme.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Diep.io Simple Colors Theme
// @version      1
// @description  Change the setting of Diep.io to simple colors theme.
// @author       Unary
// @grant        none
// @include      http://diep.io/
// @namespace http://greasyfork.icu/users/158176
// ==/UserScript==
var setColor=setInterval(function(){
    if(document.getElementById("loading").innerText===""){
        input.execute("net_replace_color 1 0xa3a3a3");
input.execute("net_replace_color 2 0x00e1ff");
input.execute("net_replace_color 3 0x00e1ff");
input.execute("net_replace_color 4 0xff0c00");
input.execute("net_replace_color 5 0x7200ff");
input.execute("net_replace_color 6 0x04ff00");
input.execute("net_replace_color 7 0x04ff00");
input.execute("net_replace_color 8 0xeeff00");
input.execute("net_replace_color 10 0x0000ff");
input.execute("net_replace_color 11 0xf600ff");
input.execute("net_replace_color 12 0xeeff00");
input.execute("net_replace_color 13 0x00ff00");
input.execute("net_replace_color 14 0xa3a3a3");
input.execute("net_replace_color 15 0xff0c00");
input.execute("net_replace_color 16 0xeeff00");
input.execute("net_replace_color 17 0xa3a3a3");
input.execute("net_replace_color 18 0xa3a3a3");
input.execute("ren_stroke_soft_color_intensity 1");
        clearInterval(setColor);
    }
},1000);