您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Creates playlist link of all videos from an uploader's channel (using page load trick)
// ==UserScript== // @name YouTube Uploader Videos Channel Playlist // @namespace https://gf.qytechs.cn/en/users/10118-drhouse // @version 1.2 // @description Creates playlist link of all videos from an uploader's channel (using page load trick) // @include https://www.youtube.com/user/*/videos // @include https://www.youtube.com/c/*/videos // @require http://code.jquery.com/jquery-3.4.1.min.js // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js // @require https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js // @author drhouse // @grant GM_registerMenuCommand // @license CC-BY-NC-SA-4.0 // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com // ==/UserScript== this.$ = this.jQuery = jQuery.noConflict(true); (function($){ var theurl = document.URL; function uploader(){ window.location.href = (theurl + "?view=57") } GM_registerMenuCommand ("Uploader Playlist", uploader, "u"); })(jQuery);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址