Fluxus Bypass by : SAMRAT

Bypass Fluxus and automatically copy the key to clipboard

目前為 2024-09-21 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Fluxus Bypass by : SAMRAT
// @homepageURL  https://discord.gg/HwfEf224h
// @namespace    fluxus_bypass
// @version      1.9.2
// @description  Bypass Fluxus and automatically copy the key to clipboard
// @author       Samrat
// @match        https://flux.li/android/external/start.php?HWID=*
// @license      SAMRAT
// @icon         https://cdn.discordapp.com/attachments/1270008634180370452/1284110158175146005/458088204_2297085623974752_1364441149326360095_n.jpg?ex=66e57047&is=66e41ec7&hm=c4c687d4ec4eae8f911eb2ef41497b29154f9c87f02112d289b8939f870cd58d&
// ==/UserScript==

(async function() {
    'use strict';

    // Fluxus API URL
    const fluxusApiUrl = "https://fluxus-bypass-orcin.vercel.app/api/fluxus?link=" + encodeURIComponent(window.location.href);

    // Function to fetch data from Fluxus API and copy the key to clipboard
    async function fetchAndCopy() {
        try {
            // Fetch data from the Fluxus API
            const response = await fetch(fluxusApiUrl);
            if (!response.ok) throw new Error('Network response was not ok from Fluxus API');

            // Parse JSON data
            const data = await response.json();

            // Extract the key
            const key = data.key;

            // If the key exists, copy to clipboard
            if (key) {
                await navigator.clipboard.writeText(key);
                alert('Key copied to clipboard from Fluxus API: ' + key);
            } else {
                console.error('Key not found in Fluxus API response.');
                alert('Key not found in Fluxus API response.');
            }
        } catch (error) {
            console.error('Error fetching from Fluxus API:', error);
            alert('Error fetching from Fluxus API.');
        }
    }

    // Fetch and copy the key
    await fetchAndCopy();
})();

QingJ © 2025

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