Sleazy Fork is available in English.

Fluxus Bypasser with Auto Clipboard Copy

Bypass Fluxus and automatically copy key to clipboard

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
  1. // ==UserScript==
  2. // @name Fluxus Bypasser with Auto Clipboard Copy
  3. // @homepageURL https://idk
  4. // @namespace fluxus bypass
  5. // @version 1.9
  6. // @description Bypass Fluxus and automatically copy key to clipboard
  7. // @author rafaelkris
  8. // @match https://flux.li/android/external/start.php?HWID=*
  9. // @icon https://flux.li/favicon.ico
  10. // @grant none
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (async function() {
  15. 'use strict';
  16. var apiUrl = "https://fluxus-bypass-kkk.vercel.app/api/fluxus?link=" + encodeURIComponent(window.location.href);
  17.  
  18. try {
  19. let response = await fetch(apiUrl);
  20. if (!response.ok) throw new Error('Network response was not ok');
  21. let data = await response.json();
  22.  
  23. let key = data.key; // Ensure the key is retrieved from the correct field
  24.  
  25. if (key) {
  26. try {
  27. await navigator.clipboard.writeText(key);
  28. alert('Key copied to clipboard: ' + key);
  29. } catch (err) {
  30. console.error('Failed to copy key to clipboard:', err);
  31. alert('Failed to copy key to clipboard. Please check if clipboard permissions are enabled.');
  32. }
  33. } else {
  34. console.error('Key not found in response data');
  35. }
  36. } catch (error) {
  37. console.error('Failed to fetch or copy key:', error);
  38. }
  39. })();