增加會限清單分頁連結

增加YouTube會限清單分頁連結到頻道主頁上

目前為 2021-03-17 提交的版本,檢視 最新版本

// ==UserScript==
// @version      1.0.0
// @author       TsukiAkiba
// @description   增加YouTube會限清單分頁連結到頻道主頁上
// @description:en  Add members-only-videos link to YouTube channel main page.
// @license      MIT License
// @name         增加會限清單分頁連結
// @name:en      Add members-only-videos link
// @match        https://www.youtube.com/channel/*
// @namespace    http://tampermonkey.net/
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    window.onload = function() {
        const displayTextMap = {
            'zh-Hant-TW': '會限清單',
            'zh-Hant-HK': '會限清單',
            'zh-Hans-CN': '会限清单',
            'ja-JP': 'メン限リスト',
            'en': 'Members-only-video List'
        };
        let targetURL = `${location.protocol}//${location.host}/playlist?list=${location.pathname.split('/')[2].replace(/^UC/, 'UUMO')}`;
        const anchorElement = document.querySelector("tp-yt-paper-tab:nth-last-of-type(2)");

        let displayText = displayTextMap[document.documentElement.lang] || displayTextMap.en;
        const newNode = document.createRange().createContextualFragment(`
            <tp-yt-paper-tab class="style-scope ytd-c4-tabbed-header-renderer" role="tab" aria-disabled="false" aria-selected="true" tabindex="0"><!--css-build:shady-->
                <div class="tab-content style-scope tp-yt-paper-tab">${displayText}</div>
	            <paper-ripple class="style-scope tp-yt-paper-tab"><!--css-build:shady-->
                    <div id="background" class="style-scope paper-ripple" style="opacity: 0.0084;"></div>
		            <div id="waves" class="style-scope paper-ripple"></div>
                </paper-ripple>
            </tp-yt-paper-tab>
        `);
        anchorElement.parentNode.insertBefore(newNode, anchorElement);
        const target = document.querySelector("tp-yt-paper-tab:nth-last-of-type(3)");

        target.addEventListener('click', function() {
            window.open(targetURL);
        });
    };
})();

QingJ © 2025

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