您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
⚡ Auto-Bypass Ads/Redirects by @Fer3on_Mod
当前为
// ==UserScript== // @name Fer3on_Mod Auto-Bypasser // @namespace http://tampermonkey.net/ // @version 20.3 // @description ⚡ Auto-Bypass Ads/Redirects by @Fer3on_Mod // @author Fer3on_Mod // @match *://swiftlnx.com/* // @match *://yourdoctor.site/* // @icon https://www.google.com/s2/favicons?sz=64&domain=swiftlnx.com // @run-at document-end // @grant GM_addStyle // ==/UserScript== (function () { "use strict"; let stopScript = false; // ---------- Modern Popup UI ---------- const popup = document.createElement("div"); popup.id = "fer3on-popup"; popup.innerHTML = ` <div class="fm-card"> <div class="fm-header"> <img src="https://i.postimg.cc/Nf6qTXkz/Picsart-25-05-24-07-25-58-369.png" alt="Fer3on_Mod"> <img src="https://www.google.com/s2/favicons?sz=64&domain=swiftlnx.com" alt="Swiftlnx"> </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.body.appendChild(popup); GM_addStyle(` #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; } .fm-card { background: #1e1e1e; padding: 24px; border-radius: 18px; text-align: center; width: 90%; max-width: 420px; color: #eee; box-shadow: 0 0 25px rgba(0,255,255,0.3); animation: fadeIn 0.4s ease; } .fm-header { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 12px; } .fm-header img { width: 42px; height: 42px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,255,255,0.4); } .fm-title { font-size: 20px; font-weight: bold; margin-bottom: 18px; background: linear-gradient(90deg,#00f7ff,#0ff,#00f7ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .fm-progress { width: 100%; background: #333; border-radius: 12px; overflow: hidden; height: 14px; margin-bottom: 14px; } .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: 14px; margin-bottom: 14px; transition: all 0.3s ease; } #fer3on-status.success { font-size: 20px; font-weight: bold; color: lime; text-shadow: 0 0 8px rgba(0,255,0,0.6); animation: successBounce 1s ease; } @keyframes successBounce { 0% { transform: scale(0.8); opacity: 0; } 50% { transform: scale(1.2); opacity: 1; } 70% { transform: scale(0.95); } 100% { transform: scale(1); } } /* --- Social Buttons --- */ .fm-social { display: flex; justify-content: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; } .fm-social a { display: inline-block; padding: 6px 16px; border-radius: 999px; /* pill rounded */ background: linear-gradient(90deg,#0ff,#00c3ff); color: #000; font-weight: bold; font-size: 13px; text-decoration: none; transition: all 0.35s ease; box-shadow: 0 0 6px rgba(0,255,255,0.3); } .fm-social a:hover { background: linear-gradient(90deg,#00f7ff,#0ff,#00f7ff); transform: scale(1.05); box-shadow: 0 0 12px rgba(0,255,255,0.6); } @keyframes fadeIn { from { opacity: 0; transform: scale(0.95);} to { opacity: 1; transform: scale(1);} } `); 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 = "✅ Done") { setLog(msg, true); stopScript = true; setTimeout(() => popup.remove(), 2500); } // ---------- Handler for yourdoctor.site ---------- function handleYourDoctor() { setLog("🌍 Detected yourdoctor.site ..."); const btn = document.querySelector("button.btn-success, a.btn-success"); if (btn) { setLog("➡️ Redirecting..."); btn.click(); // popup stays visible } } // ---------- Handler for swiftlnx.com ---------- function handleSwiftLnx() { setLog("🌍 Detected swiftlnx.com ..."); const checkBtn = setInterval(() => { if (stopScript) return clearInterval(checkBtn); 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(); // simulate pressing GET LINK finishScript("✅ Bypass completed successfully!"); }, 1200); } }, 400); } // ---------- Router ---------- if (location.hostname.includes("yourdoctor.site")) { handleYourDoctor(); } else if (location.hostname.includes("swiftlnx.com")) { handleSwiftLnx(); } })();