Greasy Fork is available in English.

MyAnimeList Watch Next

Get a random anime to watch from your list.

// ==UserScript==
// @name         MyAnimeList Watch Next
// @namespace    http://tampermonkey.com/
// @version      1.1
// @description  Get a random anime to watch from your list.
// @author       Nekosuki
// @include      /^https://myanimelist.net/animelist/.+\?status=6$/
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function($) {
    'use strict';
    $(document).ready(() => {
        const ptw = $(".list-item .list-table-data > .plantowatch").parent().children(".title").children("a.link");
        const wn = ptw[Math.floor(Math.random() * ptw.length)];
        $("div.list-block").prepend("<div class=\"list-unit plantowatch\"><div style=\"margin-bottom: 15px\" class=\"list-status-title\"><span class=\"text\">Watch next: <i><a style=\"color:white\" href=\"" + wn.href + "\">" + wn.text + "</a></i></span></div></div>");
    });
})(window.jQuery);