// ==UserScript== // @name LZT transparent chat // @namespace http://tampermonkey.net/ // @version 1.0 // @description Данное расширение делает прозрачный фон чата // @author ChatGPT , aff // @match *https://zelenka.guru/* // @match *https://lzt.market/* // @grant GM_addStyle // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; GM_addStyle(` .chat2-message-fromSelf.lztng-1hpx4rn .chat2-message-block.lztng-1hpx4rn { background: #373737; background-color: rgba(0, 0, 0, .2); } .chat2-floating.lztng-1w079ak { border: 1px solid #363636; box-shadow: 0 5px 26px 0 rgba(30, 30, 30, 0); border-radius: 10px; background: rgba(0, 0, 0, .1); position: fixed; z-index: 5666; } .chat2-widget-inner.lztng-62tbes .chat2-header.lztng-62tbes { background-color: rgba(0, 0, 0, 0); border-radius: 9px 9px 0 0; } .chat2-input.lztng-62tbes.lztng-62tbes { background-color: rgba(0, 0, 0, .01); height: 38px; line-height: 38px; border: 0 none black; color: rgb(214, 214, 214); padding: 0 75px 0 13px; border-radius: 0 0 10px 10px; width: calc(100% - 88px); } .chat2-message-block.lztng-1hpx4rn.lztng-1hpx4rn { background: #2e2e2e; border-radius: 13px; background-color: rgba(0, 0, 0, .1); padding: 8px 12px; display: flex; flex-direction: column; min-width: 0; } .chat2-message-tagged.lztng-1hpx4rn .chat2-message-block.lztng-1hpx4rn { background: linear-gradient(90deg, rgb(0 0 0 / 20%) 0%, rgb(18, 76, 50) 100%); } `); })();