YouTube - Open Playlist of Uploaded Videos

YouTube - Open Playlist of Uploaded Videos.

目前為 2024-09-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name         YouTube - Open Playlist of Uploaded Videos
// @description  YouTube - Open Playlist of Uploaded Videos.
// @version      0.2
// @author       to
// @namespace    https://github.com/to
// @license      MIT
// 
// @noframes
// @match        https://www.youtube.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// 
// @grant        GM_registerMenuCommand
// @grant        GM_openInTab
// @grant        unsafeWindow
// ==/UserScript==

GM_registerMenuCommand('Open Playlist of Uploaded Videos', () => {
	let channelId;

	// 個別ページか?
	if (unsafeWindow.ytInitialPlayerResponse) {
		channelId = unsafeWindow.ytInitialPlayerResponse.videoDetails.channelId;
	} else {
		try {
			channelId = document.querySelector('link[rel="canonical"]').href.match(/channel\/(.+)/)[1];
		} catch {
			alert('This is not the intended page.');
			return;
		}
	}

	GM_openInTab('https://www.youtube.com/playlist?list=UU' + channelId.slice(2));
});

QingJ © 2025

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