Fluxus Key System Bypasser

This userscript bypasses Fluxus key system and takes you directly to the destination page.

// ==UserScript==
// @name Fluxus Key System Bypasser
// @namespace Violentmonkey Scripts
// @match *://*.fluxteam.net/*
// @grant none
// @version 1
// @description This userscript bypasses Fluxus key system and takes you directly to the destination page.
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    window.onload = function() {
        var link = document.querySelector("a[href^='https://fluxteam.net/windows/checkpoint/main.php?']");
        if (link) {
            window.location.href = link.href.replace("https://fluxteam.net/windows/checkpoint/main.php?", "https://direct-link.net/");
        }
    };
})();

QingJ © 2025

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