// ==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("
| Title | Ep | Date |
| " + FullHistory[e].Title + " | " + FullHistory[e].Ep + " | " + "" + FullHistory[e].Date + " |