-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbypass-frdl-countdown.user.js
More file actions
54 lines (52 loc) · 2.33 KB
/
bypass-frdl-countdown.user.js
File metadata and controls
54 lines (52 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// ==UserScript==
// @name Bypass FREEdlink countdown
// @description Bypasses 60 second countdowns on FREEdlink downloads
// @namespace https://usltd.ge/
// @match https://frdl.to/*
// @match https://frdl.io/*
// @match https://frdl.is/*
// @match https://frdl.my/*
// @match https://frdl.hk/*
// @match https://frdl.fi/*
// @match https://frdl.pw/*
// @match https://frdl.by/*
// @match https://frdl.*/*
// @match https://fredl.ru/*
// @match https://fredl.*/*
// @version 1.4.3
// @license MIT
// @author Luka Mamukashvili <mamukashvili.luka@usltd.ge>
// ==/UserScript==
(function () {
'use strict';
function bypass() {
const freeDownloadButton = document.getElementById('downloadbtnfree');
const countdownDisplay = document.getElementById('countdown');
const freeCaptchaSection = document.getElementById('free-captcha');
const downloadFreeInput = document.getElementById('download_free');
if (freeDownloadButton && countdownDisplay && freeCaptchaSection && downloadFreeInput) {
console.log('[FREEDL BYPASS] Normal download elements found.');
downloadFreeInput.value = '1';
countdownDisplay.style.display = "none";
freeCaptchaSection.style.display = "block";
console.log('[FREEDL BYPASS] Captcha section shown.');
freeDownloadButton.disabled = false;
freeDownloadButton.innerText = "Start Download NOW (after captcha)";
console.log('[FREEDL BYPASS] Normal Download button enabled.');
if (!document.getElementById('userscript_message')) {
const userscript_message = document.createElement("p");
userscript_message.id = "userscript_message";
userscript_message.style.color = "green";
userscript_message.style.textAlign = "center";
userscript_message.innerText = 'Userscript active: Please complete the captcha above and then click "Start Download NOW"';
freeCaptchaSection.after(userscript_message);
}
}
else {
console.log('[FREEDL BYPASS] Target elements for normal download not found on this page.');
}
}
window.addEventListener('load', () => {
bypass();
});
})();