// ==UserScript==
// @name Swiftlnx.com Auto-Bypasser
// @namespace http://tampermonkey.net/
// @version 10.0
// @description ⚡ Auto-Bypass Ads/Redirects (Mobile + PC) by @Fer3on_Mod
// @author Fer3on_Mod
// @match *://swiftlnx.com/*
// @match *://yourdoctor.site/*
// @icon https://i.postimg.cc/Nf6qTXkz/Picsart-25-05-24-07-25-58-369.png
// @run-at document-start
// @grant GM_addStyle
// ==/UserScript==
(function () {
"use strict";
const ACTIVE_KEY = "fer3on_active";
// ---------- Create Popup Early ----------
function createPopup() {
if (document.getElementById("fer3on-popup")) return;
const popup = document.createElement("div");
popup.id = "fer3on-popup";
popup.innerHTML = `
<div class="fm-card">
<div class="fm-header">
<div class="fm-logo-wrap">
<img src="https://i.postimg.cc/Nf6qTXkz/Picsart-25-05-24-07-25-58-369.png" alt="Fer3on_Mod" class="fm-logo">
</div>
</div>
<div class="fm-title">⚡ Fer3on_Mod Auto-Bypass</div>
<div class="fm-progress"><div class="fm-bar"></div></div>
<div id="fer3on-status">⏳ Starting bypass...</div>
<div class="fm-social">
<a href="https://youtube.com/@fer3on_mod" target="_blank">📺 YouTube</a>
<a href="https://t.me/Fer3on_Mod" target="_blank">✈️ Telegram</a>
</div>
</div>
`;
document.documentElement.appendChild(popup);
}
GM_addStyle(`
/* Popup container with fade-in */
#fer3on-popup {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(10, 10, 10, 0.92);
display: flex;
align-items: center;
justify-content: center;
z-index: 2147483647 !important;
font-family: 'Segoe UI', sans-serif;
animation: popupFade 0.6s ease forwards;
}
@keyframes popupFade {
from { opacity: 0; transform: scale(0.95);}
to { opacity: 1; transform: scale(1);}
}
.fm-card {
background: #1e1e1e;
padding: 5vw;
border-radius: 16px;
text-align: center;
width: 90%;
max-width: 420px;
color: #eee;
box-shadow: 0 0 20px rgba(0,255,255,0.3);
}
.fm-header {
display: flex;
justify-content: center;
margin-bottom: 3vh;
}
/* Logo wrapper with glow */
.fm-logo-wrap {
position: relative;
display: inline-block;
}
.fm-logo-wrap::before {
content: "";
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 130%; height: 130%;
border-radius: 50%;
background: radial-gradient(circle, rgba(0,255,255,0.6), transparent 70%);
filter: blur(12px);
animation: glowPulse 3s infinite ease-in-out;
z-index: 0;
}
.fm-logo {
width: clamp(60px, 22vw, 90px);
height: auto;
border-radius: 50%;
border: 3px solid #0ff;
position: relative;
z-index: 1;
animation: pulseRotate 4s infinite ease-in-out;
}
@keyframes pulseRotate {
0% { transform: scale(1) rotate(0deg);}
25% { transform: scale(1.05) rotate(3deg);}
50% { transform: scale(1) rotate(0deg);}
75% { transform: scale(1.05) rotate(-3deg);}
100% { transform: scale(1) rotate(0deg);}
}
@keyframes glowPulse {
0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1);}
50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1);}
}
.fm-title {
font-size: clamp(16px, 5vw, 22px);
font-weight: bold;
margin-bottom: 2vh;
background: linear-gradient(90deg,#00f7ff,#0ff,#00f7ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.fm-progress {
width: 100%;
background: #333;
border-radius: 10px;
overflow: hidden;
height: 12px;
margin-bottom: 2vh;
}
.fm-bar {
width: 0%;
height: 100%;
background: linear-gradient(90deg,#0ff,#00f7ff);
animation: loadBar 2s infinite;
}
@keyframes loadBar { 0% {width:0%} 50%{width:100%} 100%{width:0%} }
#fer3on-status {
font-size: clamp(12px, 3.5vw, 15px);
margin-bottom: 2vh;
}
#fer3on-status.success {
font-size: clamp(16px, 4vw, 20px);
font-weight: bold;
color: lime;
text-shadow: 0 0 8px rgba(0,255,0,0.6);
}
.fm-social {
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}
.fm-social a {
padding: 0.6em 1em;
border-radius: 999px;
background: linear-gradient(90deg,#0ff,#00c3ff);
color: #000;
font-weight: bold;
font-size: clamp(12px, 3.5vw, 14px);
text-decoration: none;
transition: 0.3s;
}
.fm-social a:hover {
transform: scale(1.05);
}
@media (max-width: 600px) {
.fm-card { width: 95%; padding: 6vw; }
.fm-logo { width: 64px; }
.fm-title { font-size: 18px; }
}
`);
function setLog(msg, success = false) {
const status = document.getElementById("fer3on-status");
if (status) {
status.textContent = msg;
if (success) status.classList.add("success");
}
console.log("[Fer3on_Mod] " + msg);
}
function finishScript(msg = "✅ Bypass completed successfully!") {
setLog(msg, true);
localStorage.setItem(ACTIVE_KEY, "false");
setTimeout(() => {
const popup = document.getElementById("fer3on-popup");
if (popup) popup.remove();
}, 2500);
}
function handleYourDoctor() {
setLog("🌍 Detected yourdoctor.site ...");
const btn = document.querySelector("button.btn-success, a.btn-success");
if (btn) {
setLog("➡️ Redirecting...");
btn.click();
}
}
function handleSwiftLnx() {
setLog("🌍 Detected swiftlnx.com ...");
const checkBtn = setInterval(() => {
const btn = document.querySelector("a.get-link[href]:not(.disabled)");
if (btn && btn.href && !btn.href.includes("void(0)")) {
clearInterval(checkBtn);
setLog("🔗 GET LINK button found...");
setTimeout(() => {
btn.click();
finishScript("✅ Bypass completed successfully!");
}, 1200);
}
}, 400);
}
// Run immediately
localStorage.setItem(ACTIVE_KEY, "true");
createPopup();
if (location.hostname.includes("yourdoctor.site")) {
document.addEventListener("DOMContentLoaded", handleYourDoctor);
} else if (location.hostname.includes("swiftlnx.com")) {
document.addEventListener("DOMContentLoaded", handleSwiftLnx);
}
})();