500 Internal ERROR - MAL

When the ERROR message "500 Internal ERROR" is displayed the script will reload the page until MAL is sucessfully loaded...

目前為 2020-12-09 提交的版本,檢視 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';
    if (document.querySelector("title").innerText === "500 Internal Server Error")
      {
        location.reload(); //Reloads the page
      }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址