Loot-Link Bypass

Fast auto bypasser

  1. // ==UserScript==
  2. // @name Loot-Link Bypass
  3. // @namespace http://tampermonkey.net/
  4. // @version 1
  5. // @description Fast auto bypasser
  6. // @author olhodocu On Discord
  7. // @match https://loot-link.com/s?*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. // Find all script elements on the page
  14. const scripts = document.getElementsByTagName('script');
  15.  
  16. // Loop through all script elements
  17. for (let i = 0; i < scripts.length; i++) {
  18. const script = scripts[i];
  19. const scriptContent = script.innerHTML;
  20.  
  21. // Check if the script contains the PUBLISHER_LINK pattern
  22. if (scriptContent.includes("p['PUBLISHER_LINK']")) {
  23. // Extract the link from the script content
  24. const linkRegex = /p\['PUBLISHER_LINK'\]\s*=\s*'(.+?)'/;
  25. const match = scriptContent.match(linkRegex);
  26.  
  27. if (match && match.length > 1) {
  28. const redirectLink = match[1];
  29.  
  30. // Redirect to the extracted link
  31. window.location.replace(redirectLink);
  32. break;
  33. }
  34. }
  35. }
  36. })();

QingJ © 2025

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