Size
1.4 KB
Version
1
Created
Apr 12, 2026
Updated
13 days ago
SimpleBypasser
1// ==UserScript==
2// @name Delta Key Bypasser
3// @namespace http://tampermonkey.net/
4// @version 1
5// @description SimpleBypasser
6// @author arc
7// @match https://loot-link.com/s?*
8// @match https://gateway.platoboost.com/a/8?id=*
9
10// @grant none
11// @downloadURL https://update.greasyfork.org/scripts/505117/Delta%20Key%20Bypasser.user.js
12// @updateURL https://update.greasyfork.org/scripts/505117/Delta%20Key%20Bypasser.meta.js
13// ==/UserScript==
14
15(function() {
16 'use strict';
17
18 const urlnow = window.location.href;
19 function isBase64(str) {
20 try {
21 if (typeof str !== 'string' || str.length === 0) return false;
22 const base64Pattern = /^[A-Za-z0-9+/=]+$/;
23 if (!base64Pattern.test(str)) return false;
24 const decodedStr = atob(str);
25 return btoa(decodedStr) === str;
26 } catch (e) {
27 return false;
28 }
29 }
30
31 function getParameterByName(name) {
32 const urlParams = new URLSearchParams(window.location.search);
33 return urlParams.get(name);
34 }
35
36 const lutink = false;
37 const base64String = getParameterByName('r');
38 if (base64String && isBase64(base64String)) {
39 try {
40 const decodedUrl = atob(base64String);
41 window.location.href = decodedUrl;
42
43 } catch (error) {
44 console.error('Error\n', error)
45 }
46 }
47})();