When the ERROR message "500 Internal ERROR" is displayed the script will reload the page until MAL is sucessfully loaded...
当前为
// ==UserScript==
// @name 500 Internal ERROR - MAL
// @namespace MALFunction
// @version 0.5
// @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
// ==/UserScript==
(function() {
'use strict';
if (document.querySelector("title").innerText === "500 Internal Server Error" || document.querySelector("title").innerText === "504 Gateway Time-out")
{
location.reload(); //Reloads the page
}
})();