您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Works around a bug in HabboUK's EE:DB code to redirect to the log in page if signed out.
- // ==UserScript==
- // @name EE:DB 500 Error Redirect
- // @description Works around a bug in HabboUK's EE:DB code to redirect to the log in page if signed out.
- // @namespace NDYC
- // @homepageURL https://github.com/noahc500
- // @match https://habbouk.com/eedb
- // @version 1.1
- // @author NDYC
- // @license GPL-3.0
- // ==/UserScript==
- if (document.getElementsByTagName('div')[2].innerText == "Server Error") {
- document.getElementsByTagName('div')[2].innerHTML = "Restricted Page<br/>Redirecting to Login"
- window.location.replace("https://habbouk.com/login")
- }