// ==UserScript== // @name MAL Full History // @namespace Check Your Full Watching History on MAL! // @version 1.0 // @description Just an Easy Script that lets You to check Your Full Watching History on MAL // @author NurarihyonMaou // @match https://anime.plus/*/list,anime // @match https://myanimelist.net/ajaxtb.php* // @icon https://www.google.com/s2/favicons?domain=anime.plus // @grant GM_xmlhttpRequest // @grant GM_setValue // @grant GM_getValue // @require http://code.jquery.com/jquery-3.5.1.min.js // @downloadURL none // ==/UserScript== const $ = window.jQuery; var id = []; var CurrentTitle; var FullHistory = []; if (window.location.pathname.split('/')[2] === 'list,anime') { alert("Start"); $("tbody").find(".status-F, .status-C, .status-H, .status-D").next().children().each(function () { id.push($(this).attr("href").slice(30)); }); GM_setValue("id", id); document.location = "https://myanimelist.net/ajaxtb.php?keepThis=true&detailedaid=" + id[0]; } if (window.location.pathname.split('/')[1] === 'ajaxtb.php') { id = GM_getValue("id"); $("body").css("background-color", "#7E848A").css("color", "#2db300"); $("body").html("


"); for (let i = 0; i < id.length; i++) { $.ajax({ method: "GET", url: "https://myanimelist.net/ajaxtb.php?keepThis=true&detailedaid=" + id[i], complete: function (data) { data = data.responseText; CurrentTitle = $(data).find(".normal_header").text().replace(" Episode Details", ""); $($(data).find('.spaceit_pad').get().reverse()).each(function () { FullHistory.push({ Title: CurrentTitle, Ep: $(this).text().replace("Ep ", "").split(',')[0], Date: $(this).append(":00").text().replace("Ep ", "").replace("watched", "").replace(" Remove", "").split(",")[1].replace("on ", "").replace("at ", "").replace(" ", "") }); }); if ($("#p1").attr("value") < i) $("#p1").attr("value", i + 1); if (i == id.length - 1) { $("body").html("

Wait for a few Seconds

"); setTimeout(function () { FullHistory.sort(function (a, b) { return Date.parse(a.Date) - Date.parse(b.Date) || parseInt(a.Ep) - parseInt(b.Ep) || a.Title - b.Title; }); $("body").html("

Records: " + FullHistory.length + ""); for (let e = 0; e < FullHistory.length; e++) { $("table").append("" + ""); } $("td").css("padding", "10px").css("border", "1px black solid"); $("tr").css("background-color", "#4B5054"); }, 3000); } }, error: function () { alert("Unexpected Error Occured"); } }) } }
TitleEpDate
" + FullHistory[e].Title + "" + FullHistory[e].Ep + "" + FullHistory[e].Date + "