Bypass the Oxygen u Key System
目前為
// ==UserScript==
// @name public Oxygen u Key System Bypasser
// @version 1.0
// @description Bypass the Oxygen u Key System
// @author nonculturedperson / dindin
// @match *://lootlinks.co/*
// @match *://oxygenu.xyz/*
// @license lol
// @namespace https://greasyfork.org/en/users/1242451
// ==/UserScript==
(function() {
'use strict';
const redirectMap = {
"https://lootlinks.co/s?dmC0": "oxygenu.xyz/KeySystem/Check1.php",
"https://lootlinks.co/s?dmC1": "oxygenu.xyz/KeySystem/Main.php",
"https://oxygenu.xyz/KeySystem/Check1.php": "lootlinks.co/s?dmC1",
};
const currentURL = window.location.href;
if (currentURL in redirectMap) {
window.location.replace(`https://${redirectMap[currentURL]}`);
}
})();