Redirect to Lootbits.io

redirects to lootbits site if error page is accidentally opened

  1. // ==UserScript==
  2. // @name Redirect to Lootbits.io
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description redirects to lootbits site if error page is accidentally opened
  6. // @author bernd
  7. // @match https://lootbits.io/dashboard.phpundefined
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. if(location.href == "https://lootbits.io/dashboard.phpundefined")
  13. {
  14. location.href = "https://lootbits.io/dashboard.php";
  15. }
  16. })();

QingJ © 2025

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