Greasy Fork is available in English.

Lootlinks and lootlabs bypass

This userscript bypasses Lootlinks and Lootlabs links quickly and efficiently, saving you time and energy.

// ==UserScript==
// @name Lootlinks and lootlabs bypass
// @namespace Violentmonkey Scripts
// @version 1.4
// @match *://loot-link.com/*
// @match *://loot-links.com/*
// @match *://lootlinks.co/*
// @match *://lootdest.info/*
// @match *://lootdest.org/*
// @match *://links-loot.com/*
// @match *://linksloot.net/*
// @match *://lootlink.org/*
// @grant none
// @description This userscript bypasses Lootlinks and Lootlabs links quickly and efficiently, saving you time and energy.
// ==/UserScript==

(function() {
    'use strict';
    window.onload = function() {
        var links = document.getElementsByTagName('a');
        for (var i = 0; i < links.length; i++) {
            if (links[i].href.includes('lootlabs.gg')) {
                links[i].href = links[i].href.replace('lootlabs.gg', 'lootlabs.to');
            }
        }
    };
})();