Greasy Fork is available in English.

Fluxus Android Bypass

A bypass key for Fluxus Android

// ==UserScript==
// @name         Fluxus Android Bypass
// @author       Trapstar
// @description  A bypass key for Fluxus Android
// @namespace    http://tampermonkey.net/
// @match        https://linkvertise.com/530799/*
// @match        https://fluxteam.net/android/checkpoint/*
// @icon         https://fluxusexecutor.org/wp-content/uploads/2023/10/cropped-fluxus-executor-logo.png
// @version      1.0.2
// @license      MIT
// @copyright    2023
// ==/UserScript==

(function () {
    'use strict';



    const steps = [
        {
            url: "https://fluxteam.net/android/checkpoint/start.php",
            redirect: "https://linkvertise.com/530799/fluxus-android-free2"
        },
        {
            url: "https://linkvertise.com/530799/fluxus-android-free2",
            redirect: "https://fluxteam.net/android/checkpoint/check1.php"
        },
        {
            url: "https://fluxteam.net/android/checkpoint/check1.php",
            redirect: "https://linkvertise.com/530799/fluxus-android-free"
        },
        {
            url: "https://linkvertise.com/530799/fluxus-android-free",
            redirect: "https://fluxteam.net/android/checkpoint/main.php"
        },
    ];

    function redirect(url) {
        setTimeout(function () {
            window.location.href = url;
        }, 0);
    }

    const currentUrl = window.location.href;

    for (let i = 0; i < steps.length; i++) {
        const step = steps[i];
        if (currentUrl.includes(step.url)) {
            redirect(step.redirect);
            break;
        }
    }

})();