Greasy Fork 支持简体中文。

AdMaven (LootLabs) Bypass

Bypass AdMaven (LootLabs) Links within seconds!

// ==UserScript==
// @name         AdMaven (LootLabs) Bypass
// @namespace    https://ethos.kys.gay
// @version      1.8
// @description  Bypass AdMaven (LootLabs) Links within seconds!
// @match        *://*.*/s?*
// @grant        GM_xmlhttpRequest
// @connect      ethos.kys.gay
// @run-at       document-start
// @author       Shehajeez (GoatBypassers)
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';
     
    
    GM_addStyle(`
        .notif{position:fixed;top:20px;right:20px;max-width:300px;background:#fff;color:#333;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.15);overflow:hidden;display:flex;align-items:center;animation:si .3s ease-out;z-index:9999}
        .notif-c{padding:12px 20px;display:flex;align-items:center}
        .notif-i{margin-right:12px;font-size:24px}
        .notif-m{font-family:Arial,sans-serif;font-size:14px}
        .notif-p{height:3px;background:#4CAF50;width:0%;transition:width linear}
        @keyframes si{from{transform:translateX(100%)}to{transform:translateX(0)}}
        @keyframes so{from{transform:translateX(0)}to{transform:translateX(100%)}}
    `);

    function notify(m, d = 3000, t = 'i') {
        let e = document.createElement('div');
        e.className = 'notif';
        let i = '🔔';
        if (t === 's') i = '✅';
        if (t === 'e') i = '❌';
        if (t === 'w') i = '⚠️';
        e.innerHTML = `<div class="notif-c"><span class="notif-i">${i}</span><span class="notif-m">${m}</span></div><div class="notif-p"></div>`;
        document.body.appendChild(e);
        let p = e.querySelector('.notif-p');
        p.style.width = '100%';
        p.style.transitionDuration = `${d}ms`;
        setTimeout(() => {
            e.style.animation = 'so .3s ease-in forwards';
            setTimeout(() => e.remove(), 300);
        }, d);
    }


    const u = encodeURIComponent(window.location.href);
    const a = `https://ethos.kys.gay/api/free/bypass?url=${u}`;

    GM_xmlhttpRequest({
        method: "GET",
        url: a,
        onload: function(r) {
            const d = JSON.parse(r.responseText);
            if (d.result) {
                notify("Bypassing...", 3000, "i");
                setTimeout(() => {
                    window.location.replace(d.result)
                }, 3000);
            }
        }
    });
})();