hwm_chat_mod

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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 открытый приват
*/
})();