hwm_chat_mod

Изменение стилей чата

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           hwm_chat_mod
// @description    Изменение стилей чата
// @author         Kleshnerukij
// @version        1.0.3
// @include        https://www.heroeswm.ru/chat2020.php
// @include        https://www.lordswm.com/chat2020.php
// @include        http://178.248.235.15/chat2020.php
// @namespace https://greasyfork.org/users/12821
// ==/UserScript==

(function() {

document.getElementsByClassName("horizont_chat")[0].style.background = "#151515"; //Меняем фон чата
document.getElementsByClassName("chat_messages_container")[0].style.opacity = "0.9"; //Меняем фон чата
document.getElementsByClassName("chat_input_message")[0].style.borderColor = "#555555";
document.getElementById("message_line").style.color = "#DDDDDD";

document.getElementsByClassName("chat_user_panel")[0].style.background = "#111111"; //Меняем фон панель участников чата
document.getElementsByClassName("chat_user_list")[0].style.color = "#bcd206"; //Меняем цвет списка участников чата
document.getElementById("chat_room_name").style.color = "#dedede";

document.getElementsByClassName("chat_rbutton")[0].style.background = "#802121";
document.getElementsByClassName("chat_rbutton")[0].style.boxShadow = "inset 0 0 0 0px #b71b1b, inset 0 0 0 1px #dfdfdf, inset 0 0 0 3px #7b1717";
document.getElementsByClassName("chat_rbutton")[1].style.background = "#802121";
document.getElementsByClassName("chat_rbutton")[1].style.boxShadow = "inset 0 0 0 0px #b71b1b, inset 0 0 0 1px #dfdfdf, inset 0 0 0 3px #7b1717";
document.getElementsByClassName("chat_send_button")[0].style.background = "#802121";
document.getElementsByClassName("chat_send_button")[0].style.boxShadow = "inset 0 0 0 0px #b71b1b, inset 0 0 0 1px #dfdfdf, inset 0 0 0 3px #7b1717";

/*
#cccccc простое
#c4dcb1 направленное
#d8beaa приват
#ccc2d6 открытый приват
*/
})();