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

QingJ © 2025

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