Static_Chat_Pos_by_el9in

Static position

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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