AdMaven (LootLabs) Bypass

Bypass AdMaven (LootLabs) Links within seconds!

  1. // ==UserScript==
  2. // @name AdMaven (LootLabs) Bypass
  3. // @namespace https://ethos.kys.gay
  4. // @version 1.8
  5. // @description Bypass AdMaven (LootLabs) Links within seconds!
  6. // @match *://*.*/s?*
  7. // @grant GM_xmlhttpRequest
  8. // @connect ethos.kys.gay
  9. // @run-at document-start
  10. // @author Shehajeez (GoatBypassers)
  11. // @grant GM_addStyle
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. GM_addStyle(`
  17. .notif{position:fixed;top:20px;right:20px;max-width:300px;background:#fff;color:#333;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.15);overflow:hidden;display:flex;align-items:center;animation:si .3s ease-out;z-index:9999}
  18. .notif-c{padding:12px 20px;display:flex;align-items:center}
  19. .notif-i{margin-right:12px;font-size:24px}
  20. .notif-m{font-family:Arial,sans-serif;font-size:14px}
  21. .notif-p{height:3px;background:#4CAF50;width:0%;transition:width linear}
  22. @keyframes si{from{transform:translateX(100%)}to{transform:translateX(0)}}
  23. @keyframes so{from{transform:translateX(0)}to{transform:translateX(100%)}}
  24. `);
  25.  
  26. function notify(m, d = 3000, t = 'i') {
  27. let e = document.createElement('div');
  28. e.className = 'notif';
  29. let i = '🔔';
  30. if (t === 's') i = '✅';
  31. if (t === 'e') i = '❌';
  32. if (t === 'w') i = '⚠️';
  33. e.innerHTML = `<div class="notif-c"><span class="notif-i">${i}</span><span class="notif-m">${m}</span></div><div class="notif-p"></div>`;
  34. document.body.appendChild(e);
  35. let p = e.querySelector('.notif-p');
  36. p.style.width = '100%';
  37. p.style.transitionDuration = `${d}ms`;
  38. setTimeout(() => {
  39. e.style.animation = 'so .3s ease-in forwards';
  40. setTimeout(() => e.remove(), 300);
  41. }, d);
  42. }
  43.  
  44.  
  45. const u = encodeURIComponent(window.location.href);
  46. const a = `https://ethos.kys.gay/api/free/bypass?url=${u}`;
  47.  
  48. GM_xmlhttpRequest({
  49. method: "GET",
  50. url: a,
  51. onload: function(r) {
  52. const d = JSON.parse(r.responseText);
  53. if (d.result) {
  54. notify("Bypassing...", 3000, "i");
  55. setTimeout(() => {
  56. window.location.replace(d.result)
  57. }, 3000);
  58. }
  59. }
  60. });
  61. })();