Lostbypass (kxBypass) Executor Bypass

new bypasser ~ made by awaitlol. [NOW WORKS BY ITSELF!]

当前为 2025-06-22 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Lostbypass (kxBypass) Executor Bypass
// @description  new bypasser ~ made by awaitlol. [NOW WORKS BY ITSELF!]
// @namespace    https://discord.gg/pqEBSTqdxV
// @version      2.0
// @match        https://*.work.ink/1ZRk*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function () {
  'use strict';

// NOTE: THIS USERSCRIPT MOSTLY WORKS FOR THE SWIFT KEYSYSTEM WORK.INK, IT ALSO WORKS FOR SOME WORK.INK LINKS BUT NOT ALL OF THEM! YOU CAN MODIFY IT TO WORK ON OTHER ONES ASWELL!!
// USE AT YOUR OWN RISK ~ IF YOU GET BLACKLISTED FROM THE SWIFT KEYSYSTEM IT IS NOT MY FAULT!!

if (window.location.href.includes("work.ink/1ZRk/")) {
  alert("Bypass is currently patched, please join the Discord -> https://discord.gg/pqEBSTqdxV")
  console.log("bypass by awaitlol. ~ pls dont sue me bass ~");


  const repeatSelectors = [
    '.button-box .accessBtn',
    'button.closelabel'

  ];

  let skipClicked = false;
  let accessClicked = false;

  const interval = setInterval(() => {
    document.querySelector('.main-modal')?.remove();

    repeatSelectors.forEach(sel => {
      const btn = document.querySelector(sel);
      if (btn) {
        btn.click();
        console.log(`Clicked ${sel}`);
      }
    });

    if (!skipClicked) {
      const skipBtn = document.querySelector('button.skipBtn');
      if (skipBtn) {
        skipBtn.click();
        skipClicked = true;
        console.log('Clicked skipBtn');

        setTimeout(() => {
          const accessBtn = document.querySelector('#access-offers.accessBtn');
          if (accessBtn) {
            accessBtn.click();
            accessClicked = true;
            console.log('Clicked #access-offers.accessBtn');

            document.body.innerHTML = '';
            const wrapper = document.createElement('div');
            wrapper.style.position = 'fixed';
            wrapper.style.top = '50%';
            wrapper.style.left = '50%';
            wrapper.style.transform = 'translate(-50%, -50%)';
            wrapper.style.display = 'flex';
            wrapper.style.justifyContent = 'center';
            wrapper.style.alignItems = 'center';
            wrapper.style.height = '100vh';
            wrapper.style.width = '100vw';

            wrapper.appendChild(accessBtn);
            document.body.appendChild(wrapper);

            clearInterval(interval);
          }
        }, 1000);
      }
    }
  }, 1000);
}
})();