public Oxygen u Key System Bypasser

Bypass the Oxygen u Key System

  1. // ==UserScript==
  2. // @name public Oxygen u Key System Bypasser
  3. // @version 1.0
  4. // @description Bypass the Oxygen u Key System
  5. // @author nonculturedperson / dindin
  6. // @match *://lootlinks.co/*
  7. // @match *://oxygenu.xyz/*
  8. // @license lol
  9. // @namespace https://greasyfork.org/en/users/1242451
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. const redirectMap = {
  14. "https://lootlinks.co/s?dmC0": "oxygenu.xyz/KeySystem/Check1.php",
  15. "https://lootlinks.co/s?dmC1": "oxygenu.xyz/KeySystem/Main.php",
  16. "https://oxygenu.xyz/KeySystem/Check1.php": "lootlinks.co/s?dmC1",
  17. };
  18. const currentURL = window.location.href;
  19. if (currentURL in redirectMap) {
  20. window.location.replace(`https://${redirectMap[currentURL]}`);
  21. }
  22. })();