Чат в новом окне

открывает чат стрима в новом окне

// ==UserScript==
// @name         Чат в новом окне
// @version      1.2
// @description  открывает чат стрима в новом окне
// @author       awaw
// @match        https://www.twitch.tv/*
// @grant        none
// @license      MIT
// @namespace http://tampermonkey.net/
// ==/UserScript==

(function() {
    'use strict';

    function createChatButton() {
        if (document.querySelector("#popout-chat-button")) return;

        const button = document.createElement("button");
        button.id = "popout-chat-button";
        button.textContent = "Popout Chat";
        button.style.position = "absolute";
        button.style.top = "100px";
        button.style.right = "20px";
        button.style.padding = "10px";
        button.style.backgroundColor = "#9146FF";
        button.style.color = "white";
        button.style.border = "none";
        button.style.borderRadius = "5px";
        button.style.cursor = "pointer";
        button.style.zIndex = 1000;

        document.body.appendChild(button);

        button.addEventListener("click", function() {
            const currentUrl = window.location.href;
            const channelName = currentUrl.split("/").pop();
            const chatUrl = `https://www.twitch.tv/popout/${channelName}/chat?popout=`;
            window.open(chatUrl, "_blank", "width=400,height=600");
        });
    }

    window.addEventListener("load", function() {
        setTimeout(createChatButton, 3000);
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址