Speedy | Krunker Theme

Krunker Theme

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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;
}
`);