Speedy | Krunker Theme

Krunker Theme

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Speedy | Krunker Theme
// @namespace    http://tampermonkey.net/
// @version      5
// @description  Krunker Theme
// @author       Speedy
// @match        https://krunker.io/*
// @run-at       document-start
// @require      https://code.jquery.com/jquery-3.0.0-alpha1.min.js
// @icon         https://i.ibb.co/svzZ1BZ/Speedy-icon.png
// @require      http://code.jquery.com/jquery-3.2.1.slim.min.js
// @require      http://code.jquery.com/jquery-latest.js
// @require      https://greasyfork.org/scripts/372672-everything-hook/code/Everything-Hook.js?version=784972
// @include      /^(https?:\/\/)?(www\.)?(.+)krunker\.io(|\/|\/\?(server|party)=.+)$/
// @grant        GM_xmlhttpRequest
// @grant        GM_addStyle
// ==/UserScript==

document.title = "• Aurora Community";

var color = "#fc03ec";

GM_addStyle(`
.menuItem .menuItemIcon, .menuItem .menuItemTitle, .headerBar div, #instructions,.chatItem, #chatInput, #streamContainer, .blackShad, .terms, #mapInfo {
   color: ${color};
}
.menuItem:hover, .menuItemIcon:hover {
   background: ${color};
   color: #fff;
}
#subLogoButtons>.button, #customizeButton {
   background: ${color};
   box-shadow: none;
}
#subLogoButtons>.button:hover, #customizeButton:hover {
   background: #fff;
   color: ${color};
}
.buttonG {
   background-color: ${color};
   box-shadow: inset 0 -7px 0 0 #008b00!important;
}
`);