Redirect to Lootbits.io

redirects to lootbits site if error page is accidentally opened

目前为 2020-02-12 提交的版本。查看 最新版本

// ==UserScript==
// @name         Redirect to Lootbits.io 
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  redirects to lootbits site if error page is accidentally opened
// @author       bernd
// @match        https://lootbits.io/dashboard.phpundefined
// @grant        none
// ==/UserScript==

(function() {
        if(location.href == "https://lootbits.io/dashboard.phpundefined")
        {
            location.href = "https://lootbits.io/dashboard.php";
        }
})();

QingJ © 2025

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