// ==UserScript== // @name 500 Internal ERROR - MAL // @namespace MALFunction // @version 0.1 // @description When the ERROR message "500 Internal ERROR" is displayed the script will reload the page until MAL is sucessfully loaded... // @author hacker // @match https://myanimelist.net/* // @icon https://www.google.com/s2/favicons?domain=myanimelist.net // @run-at document-end // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; if (document.querySelector("title").innerText === "500 Internal Server Error") { location.reload(); //Reloads the page } })();