Greasy Fork is available in English.
Bypasses Swift + Work.ink [semi] FULLY!
当前为
// ==UserScript==
// @name kxBypass Executor Bypass
// @description Bypasses Swift + Work.ink [semi] FULLY!
// @namespace https://discord.gg/pqEBSTqdxV
// @version 2.7
// @match https://*.work.ink/1ZRk*
// @match https://*.swiftkeysystem.vip/ks/checkpoint/*
// @match https://*.swiftkeysystem.vip/ks/getkey/*
// @grant none
// @run-at document-end
// @icon https://i.pinimg.com/736x/aa/2a/e5/aa2ae567da2c40ac6834a44abbb9e9ff.jpg
// ==/UserScript==
(function () {
'use strict';
if (document.title === 'Just a moment...') return ;
/* Swift System */
if (window.location.href.includes("swiftkeysystem.vip/ks/checkpoint/")) {
const interval = setInterval(() => {
document.querySelector('.footer').textContent = '© 2025 kxBypass • discord.gg/pqEBSTqdxV';
document.querySelector('.instruction-area').textContent = 'Swift Key System is absolute dogshit in my opinion.';
document.querySelector('h1').textContent = 'kxBypass';
document.querySelector('.checkpoint-container').style.background = 'linear-gradient(135deg, rgba(128, 0, 255, 0.85), rgba(75, 0, 130, 0.85))';
document.body.style.background = 'linear-gradient(135deg, #3a0ca3, #720026)';
}, 100);
}
if (window.location.href.includes("swiftkeysystem.vip/ks/getkey/")) {
const interval = setInterval(() => {
document.querySelector('.footer').textContent = '© 2025 kxBypass • discord.gg/pqEBSTqdxV';
document.querySelector('h1').textContent = 'Key System Bypassed! ✅';
document.querySelector('.completion-container').style.background = 'linear-gradient(135deg, rgba(128, 0, 255, 0.85), rgba(75, 0, 130, 0.85))';
document.body.style.background = 'linear-gradient(135deg, #3a0ca3, #720026)';
}, 100);
}
/* Work.ink System */
if (window.location.href.includes("work.ink/1ZRk/")) {
console.log("swift and work.ink bypass by awaitlol. ~ made in 10 minutes -> discord.gg/pqEBSTqdxV");
const repeatSelectors = [
'.button-box .accessBtn',
'button.closelabel'
];
let skipClickCount = 0;
let accessIsolated = false;
const interval = setInterval(() => {
const checkpointNode = document.querySelector('div.fixed.top-16.left-0.right-0.bottom-0.bg-white.z-40.overflow-y-auto');
if (checkpointNode) {
checkpointNode.remove();
}
document.querySelector('.main-modal')?.remove();
repeatSelectors.forEach(sel => {
const btn = document.querySelector(sel);
if (btn) {
btn.click();
}
});
const skipBtn = document.querySelector('button.skipBtn');
if (skipBtn && skipClickCount < 4) {
skipBtn.click();
skipClickCount++;
}
if (skipClickCount >= 4 && !accessIsolated) {
const accessBtn = document.querySelector('#access-offers.accessBtn');
if (accessBtn) {
document.body.innerHTML = '';
document.body.style.cssText = `
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: white;
`;
document.body.appendChild(accessBtn);
accessBtn.style.cssText = `
font-size: 1.25rem;
padding: 1rem 2rem;
border-radius: 8px;
background-color: #10b981;
color: white;
border: none;
cursor: pointer;
`;
accessIsolated = true;
clearInterval(interval);
}
}
}, 200);
}
})();