Show YouTube comments while watching 2025

Moves comments to the right side and adds a button to toggle between comments and recommended videos

当前为 2025-03-04 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name            Show YouTube comments while watching 2025
// @description     Moves comments to the right side and adds a button to toggle between comments and recommended videos
// @version         3.2
// @author          barn852 & Eloren1
// @license         MIT
// @match           *://*.youtube.com/*
// @include         *://*.youtube.com/watch*
// @grant           none
// @require         https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// @run-at          document-end
// @noframes
// @namespace https://greasyfork.org/users/572660
// ==/UserScript==

(function() {
    'use strict';

    let showComments = true; // Show comments by default

    const moveComments = () => {
        let comments = document.getElementById('comments');
        let sidebar = document.querySelector('#secondary-inner');

        if (comments && sidebar && !sidebar.contains(comments)) {
            sidebar.appendChild(comments);
            console.log('Moved comments to the right side');
        }
    };

    const updateView = () => {
        let comments = document.getElementById('comments');
        let related = document.getElementById('related');

        if (comments && related) {
            comments.style.display = 'block';
            related.style.display = 'none';
        }
    };

    const toggleView = () => {
        let comments = document.getElementById('comments');
        let related = document.getElementById('related');

        if (comments && related) {
            showComments = !showComments;
            comments.style.display = showComments ? 'block' : 'none';
            related.style.display = showComments ? 'none' : 'block';
        }
    };

    const observer = new MutationObserver(() => {
        moveComments();
        updateView();
    });

    observer.observe(document.body, { childList: true, subtree: true });

    let button = document.createElement('button');
    button.innerHTML = '<svg width="24" height="24" viewBox="0 0 22 22"><g fill="currentColor"><path d="M4 14h4v-4H4v4zm0 5h4v-4H4v4zM4 9h4V5H4v4zm5 5h12v-4H9v4zm0 5h12v-4H9v4zM9 5v4h12V5H9z"/></g></svg>';
    button.style = 'background: transparent; border: 0; color: rgb(96,96,96); outline: 0; cursor: pointer; padding: 5px 10px;';

    button.onclick = toggleView;

    let waitButton = setInterval(() => {
        let menu = document.getElementById('end');
        if (menu) {
            clearInterval(waitButton);
            menu.insertBefore(button, menu.lastElementChild);
            updateView();
        }
    }, 500);

    console.log('Script loaded');

})();