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.

  1. // ==UserScript==
  2. // @name Lootlinks and lootlabs bypass
  3. // @namespace Violentmonkey Scripts
  4. // @version 1.4
  5. // @match *://loot-link.com/*
  6. // @match *://loot-links.com/*
  7. // @match *://lootlinks.co/*
  8. // @match *://lootdest.info/*
  9. // @match *://lootdest.org/*
  10. // @match *://links-loot.com/*
  11. // @match *://linksloot.net/*
  12. // @match *://lootlink.org/*
  13. // @grant none
  14. // @description This userscript bypasses Lootlinks and Lootlabs links quickly and efficiently, saving you time and energy.
  15. // ==/UserScript==
  16.  
  17. (function() {
  18. 'use strict';
  19. window.onload = function() {
  20. var links = document.getElementsByTagName('a');
  21. for (var i = 0; i < links.length; i++) {
  22. if (links[i].href.includes('lootlabs.gg')) {
  23. links[i].href = links[i].href.replace('lootlabs.gg', 'lootlabs.to');
  24. }
  25. }
  26. };
  27. })();