Sort/Remove YouTube Watch Later List

Adds sort and remove button for the Youtube Watch Later page

Versione datata 05/05/2016. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @id           SortRemoveYouTubeWatchLaterlist
// @namespace    https://greasyfork.org/users/42190
// @name         Sort/Remove YouTube Watch Later List
// @Author       Jus7ForFun
// @version      0.2.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.org/scripts/1003-wait-for-key-elements/code/Wait%20for%20key%20elements.js?version=49342
// ==/UserScript==


waitForKeyElements ("#pl-video-table", SortButton);

waitForKeyElements(".playlist-actions", RemoveButton);


function qselector(query, context) {
    return (context || document).querySelector(query);
}

function MakeButton(text, action) {
    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');
}