Greasy Fork

kxBypass Executor Bypass

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

// ==UserScript==
// @name         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/")) {
  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);
}
})();