您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds sort and remove button for the Youtube Watch Later page
当前为
// ==UserScript== // @id SortRemoveYouTubeWatchLaterlist // @name Sort/Remove YouTube Watch Later List // @Author Jus7ForFun // @version 0.1 // @description Adds sort and remove button for the Youtube Watch Later page // @match https://www.youtube.com/* // @match http://www.youtube.com/* // @license GNU GPL v3 // @require https://code.jquery.com/jquery-latest.min.js // @require https://greasyfork.dpdns.org/scripts/1003-wait-for-key-elements/code/Wait%20for%20key%20elements.js?version=49342 // @namespace https://greasyfork.dpdns.org/users/42190 // ==/UserScript== waitForKeyElements ("#pl-video-table", SortButton); waitForKeyElements(".playlist-actions", RemoveButton); function qselector(query, context) { return (context || document).querySelector(query); } function MakeButton(text, action,query) { var btn = document.createElement('button'); btn.className = 'yt-uix-button yt-uix-button-size-default yt-uix-button-default'; btn.innerHTML = '<span class="yt-uix-button-content">' + text + '</span>'; btn.addEventListener('click', action, false); qselector('.playlist-actions').appendChild(btn); } function RemoveButton () { MakeButton ('Clear The List', function(evt) { Removelist (); }); } function SortButton () { MakeButton ('Sort Alphabetically', function(evt) { SortList (); }); } function Removelist(){ var el = document.getElementsByClassName('pl-video-edit-remove'); if (el.length > 0) { el[el.length-1].click(); setTimeout(Removelist,200); } } function SortList () { $('html, body').css('display', 'none'); var WatchLaterListRows = [], SortedList = ''; $('#pl-video-table > tbody > tr').each(function() { var video = $(this); WatchLaterListRows.push(video[0]); video.remove(); }); var Sorted = $.makeArray(WatchLaterListRows).sort(function(a,b){ return ( $(a).attr('data-title') < $(b).attr('data-title') ) ? -1 : 1; }); $.each(Sorted, function(index, video) { SortedList += video.outerHTML; }); $('#pl-load-more-destination').append(SortedList); $('html, body').css('display', 'block'); }