您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass Fluxus and automatically copy the key to clipboard
当前为
// ==UserScript== // @name Fluxus Bypass by: SAMRAT // @homepageURL https://discord.gg/HwfEf224h // @namespace fluxus_bypass // @version 9 // @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 without encoding const fluxusApiUrl = `http://45.90.12.32:6030/api/bypass?link=${window.location.href}`; // Function to fetch data from Fluxus API and copy the key to clipboard async function fetchAndCopy() { try { console.log(`Fetching from: ${fluxusApiUrl}`); // Log the URL // Fetch data from the Fluxus API const response = await fetch(fluxusApiUrl); // Check if the response is OK if (!response.ok) { console.error(`Network response was not ok: ${response.statusText}`); throw new Error('Network response was not ok'); } // Log the raw response const rawResponse = await response.text(); console.log(`Raw API response: ${rawResponse}`); // Parse JSON data const data = JSON.parse(rawResponse); // Safely parse the JSON // Log the parsed data console.log('Parsed data from API:', data); // Extract the key from the API response const key = data.key; // If the key exists, copy it to the clipboard if (key) { await navigator.clipboard.writeText(key); showNotification(`Key copied: ${key}`); } else { console.error('Key not found in API response.'); showNotification('Key not found in API response.'); } } catch (error) { console.error('Error fetching from Fluxus API:', error); showNotification('Error fetching from API.'); } } // Function to show a notification message function showNotification(message) { const notification = document.createElement('div'); notification.style.position = 'fixed'; notification.style.top = '10px'; notification.style.right = '10px'; notification.style.padding = '10px'; notification.style.backgroundColor = 'rgba(0, 0, 0, 0.8)'; notification.style.color = '#fff'; notification.style.borderRadius = '5px'; notification.style.zIndex = '9999'; notification.textContent = message; document.body.appendChild(notification); setTimeout(() => { document.body.removeChild(notification); }, 3000); } // Fetch and copy the key await fetchAndCopy(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址