YouTube Classic Live Chat Position

Bring back old layout of YouTube Live Chat

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        YouTube Classic Live Chat Position
// @namespace   https://github.com/Amadeus-AI
// @description Bring back old layout of YouTube Live Chat
// @icon        https://www.youtube.com/s/desktop/3748dff5/img/favicon_48.png
// @version     1.0.1
// @author      AmadeusAI
// @match       *://*.youtube.com/*
// @run-at      document-start
// @grant       none
// @license     MIT
// ==/UserScript==

(function() {
    let tries = 0;
    const maxTries = 10;
    const intervalTime = 42; // ms

    const tryRestore = () => {
        if (window.yt?.config_?.EXPERIMENT_FLAGS) {
            const flags = window.yt.config_.EXPERIMENT_FLAGS;
            flags.web_watch_enable_fs_squeezeback_panels = false
            flags.web_watch_theater_chat = false
        }
        if (++tries >= maxTries) clearInterval(timer);
    };

    const timer = setInterval(tryRestore, intervalTime);
})();