Lootlink and Lootlabs.gg Bypasser

Bypasses loot-link.com and lootlabs.gg links quickly and efficiently

目前為 2024-01-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Lootlink and Lootlabs.gg Bypasser
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Bypasses loot-link.com and lootlabs.gg links quickly and efficiently
// @author       You
// @match        https://*/*
// @match        http://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const url = window.location.href;
    if (url.includes("loot-link.com") || url.includes("lootlabs.gg")) {
        const newUrl = url.replace(/(https?:\/\/)?(www\.)?(loot-link\.com|lootlabs\.gg)\/s\?/g, "");
        window.location.replace(newUrl);
    }
})();

QingJ © 2025

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