AdMaven (LootLabs) Bypass

Bypass AdMaven and LootLabs links

目前为 2024-08-10 提交的版本。查看 最新版本

// ==UserScript==
// @name         AdMaven (LootLabs) Bypass
// @namespace    https://et.goatbypassers.xyz
// @version      1.3
// @description  Bypass AdMaven and LootLabs links
// @match        *://*.*/s?*
// @grant        GM_xmlhttpRequest
// @connect      et.goatbypassers.xyz
// @run-at       document-start
// @author       Shehajeez (GoatBypassers)
// ==/UserScript==

(function() {
    'use strict';

    const u = encodeURIComponent(window.location.href);
    const a = `https://et.goatbypassers.xyz/api/adlinks/bypass?url=${u}`;

    GM_xmlhttpRequest({
        method: "GET",
        url: a,
        onload: function(r) {
            const d = JSON.parse(r.responseText);
            if (d.bypassed) {
                n("Bypassing AdMaven and LootLabs... Please wait.");
                setTimeout(() => {
                    window.location.href = d.bypassed;
                }, 3000);
            }
        }
    });

    function n(msg) {
        const div = document.createElement('div');
        div.style.position = 'fixed';
        div.style.top = '0';
        div.style.left = '0';
        div.style.width = '100%';
        div.style.height = '100%';
        div.style.backgroundColor = 'rgba(0, 0, 0, 0.8)';
        div.style.color = 'white';
        div.style.display = 'flex';
        div.style.alignItems = 'center';
        div.style.justifyContent = 'center';
        div.style.padding = '20px';
        div.style.boxSizing = 'border-box';
        div.style.fontSize = '18px';
        div.style.zIndex = '10000';
        div.textContent = msg;
        document.body.appendChild(div);
        setTimeout(() => {
            div.remove();
        }, 3000);
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址