Static_Chat_Pos_by_el9in

Static position

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Static_Chat_Pos_by_el9in
// @namespace    Static_Chat_Pos_by_el9in
// @version      0.1
// @description  Static position
// @author       el9in
// @match        https://zelenka.guru/*
// @match        https://lolz.guru/*
// @match        https://lzt.market/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zelenka.guru
// @grant        unsafeWindow
// @license      el9in
// ==/UserScript==

(function() {
    'use strict';
    const h = 71;
    const w = 1332;

    function init() {
        const windowWidth = window.innerWidth;
        const windowHeight = window.innerHeight;
        const chatFloating = document.querySelector('.chat2-floating');
        if (chatFloating && windowWidth >= w && windowHeight >= h && windowWidth >= (w + parseInt(chatFloating.style.width.slice(0, -2))) && windowHeight >= (h + parseInt(chatFloating.style.height.slice(0, -2)))) {
            chatFloating.style.top = `${h}px`;
            chatFloating.style.left = `${w}px`;
        } else if(chatFloating && windowWidth >= parseInt(chatFloating.style.left.slice(0, -2))) {
            chatFloating.style.left = `${windowWidth - parseInt(chatFloating.style.width.slice(0, -2)) - 30}px`;
        }
    }

    const startFloating = document.querySelector('.chat2-floating');
    if(startFloating) {
        init();
        window.addEventListener('resize', init);
    }
})();