kxBypass Executor Bypass

Bypasses Swift + Work.ink [semi] FULLY!

  1. // ==UserScript==
  2. // @name kxBypass Executor Bypass
  3. // @description Bypasses Swift + Work.ink [semi] FULLY!
  4. // @namespace https://discord.gg/pqEBSTqdxV
  5. // @version 2.7
  6. // @match https://*.work.ink/1ZRk*
  7. // @match https://*.swiftkeysystem.vip/ks/checkpoint/*
  8. // @match https://*.swiftkeysystem.vip/ks/getkey/*
  9. // @grant none
  10. // @run-at document-end
  11. // @icon https://i.pinimg.com/736x/aa/2a/e5/aa2ae567da2c40ac6834a44abbb9e9ff.jpg
  12. // ==/UserScript==
  13.  
  14. (function () {
  15. 'use strict';
  16.  
  17. if (document.title === 'Just a moment...') return ;
  18.  
  19. /* Swift System */
  20.  
  21. if (window.location.href.includes("swiftkeysystem.vip/ks/checkpoint/")) {
  22.  
  23. const interval = setInterval(() => {
  24. document.querySelector('.footer').textContent = '© 2025 kxBypass • discord.gg/pqEBSTqdxV';
  25. document.querySelector('.instruction-area').textContent = 'Swift Key System is absolute dogshit in my opinion.';
  26. document.querySelector('h1').textContent = 'kxBypass';
  27. document.querySelector('.checkpoint-container').style.background = 'linear-gradient(135deg, rgba(128, 0, 255, 0.85), rgba(75, 0, 130, 0.85))';
  28. document.body.style.background = 'linear-gradient(135deg, #3a0ca3, #720026)';
  29.  
  30. }, 100);
  31. }
  32.  
  33. if (window.location.href.includes("swiftkeysystem.vip/ks/getkey/")) {
  34.  
  35. const interval = setInterval(() => {
  36. document.querySelector('.footer').textContent = '© 2025 kxBypass • discord.gg/pqEBSTqdxV';
  37. document.querySelector('h1').textContent = 'Key System Bypassed! ✅';
  38. document.querySelector('.completion-container').style.background = 'linear-gradient(135deg, rgba(128, 0, 255, 0.85), rgba(75, 0, 130, 0.85))';
  39. document.body.style.background = 'linear-gradient(135deg, #3a0ca3, #720026)';
  40.  
  41. }, 100);
  42. }
  43.  
  44.  
  45. /* Work.ink System */
  46.  
  47. if (window.location.href.includes("work.ink/1ZRk/")) {
  48.  
  49. console.log("swift and work.ink bypass by awaitlol. ~ made in 10 minutes -> discord.gg/pqEBSTqdxV");
  50.  
  51. const repeatSelectors = [
  52. '.button-box .accessBtn',
  53. 'button.closelabel'
  54. ];
  55.  
  56. let skipClickCount = 0;
  57. let accessIsolated = false;
  58.  
  59. const interval = setInterval(() => {
  60. const checkpointNode = document.querySelector('div.fixed.top-16.left-0.right-0.bottom-0.bg-white.z-40.overflow-y-auto');
  61. if (checkpointNode) {
  62. checkpointNode.remove();
  63. }
  64.  
  65. document.querySelector('.main-modal')?.remove();
  66.  
  67. repeatSelectors.forEach(sel => {
  68. const btn = document.querySelector(sel);
  69. if (btn) {
  70. btn.click();
  71. }
  72. });
  73.  
  74. const skipBtn = document.querySelector('button.skipBtn');
  75. if (skipBtn && skipClickCount < 4) {
  76. skipBtn.click();
  77. skipClickCount++;
  78. }
  79.  
  80. if (skipClickCount >= 4 && !accessIsolated) {
  81. const accessBtn = document.querySelector('#access-offers.accessBtn');
  82. if (accessBtn) {
  83. document.body.innerHTML = '';
  84. document.body.style.cssText = `
  85. display: flex;
  86. justify-content: center;
  87. align-items: center;
  88. height: 100vh;
  89. background: white;
  90. `;
  91. document.body.appendChild(accessBtn);
  92. accessBtn.style.cssText = `
  93. font-size: 1.25rem;
  94. padding: 1rem 2rem;
  95. border-radius: 8px;
  96. background-color: #10b981;
  97. color: white;
  98. border: none;
  99. cursor: pointer;
  100. `;
  101.  
  102. accessIsolated = true;
  103. clearInterval(interval);
  104. }
  105. }
  106. }, 200);
  107. }
  108. })();

QingJ © 2025

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