您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
增加YouTube會限清單分頁連結到頻道主頁上
当前为
// ==UserScript== // @version 1.0.3 // @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/* // @namespace https://github.com/erase2004/add-members-only-videos-list-button // @grant none // @run-at document-start // ==/UserScript== (function() { 'use strict'; window.onload = function() { function addLink() { const displayTextMap = { 'zh-Hant-TW': '會限清單', 'zh-Hant-HK': '會限清單', 'zh-Hans-CN': '会限清单', 'ja-JP': 'メン限リスト', 'en': 'Members-only-video List' }; 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() { let targetURL = `${location.protocol}//${location.host}/playlist?list=${location.pathname.split('/')[2].replace(/^UC/, 'UUMO')}`; window.open(targetURL); }); } let targetURL; let href = location.href; if (/\/channel\//.test(href)) { addLink(); } else { if (window.MutationObserver) { let observer = new MutationObserver(function(mutations) { mutations.forEach(mutation => { if (mutation.type == 'childList') { mutation.addedNodes.forEach(node => { // tp-yt-app-header.style-scope.ytd-c4-tabbed-header-renderer if (node.tagName == "TP-YT-APP-HEADER" && node.className == "style-scope ytd-c4-tabbed-header-renderer") { addLink(); } }); } }); }); observer.observe(document.querySelector('body'), { "childList": true, "subtree": true }); } } }; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址