diff --git a/Bypass_All_Shortlinks.user.js b/Bypass_All_Shortlinks.user.js index f147cf8..a44cfa5 100644 --- a/Bypass_All_Shortlinks.user.js +++ b/Bypass_All_Shortlinks.user.js @@ -1744,7 +1744,7 @@ if (/(free-content.pro|((ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com))\/s\?/.test(url)) { GM_setValue('savedShortlink', url); window.location.assign('https://adbypass.eu/'); - } else if (/adbypass.eu/.test(url)) { + } else if (/adbypass.eu/.test(url) && !url.includes('/unblock')) { window.addEventListener("load", function(event) { var savedShortlink = GM_getValue('savedShortlink', null); var inputField = document.querySelector('#inputt'); @@ -1753,6 +1753,15 @@ GM_deleteValue('savedShortlink'); } }); + } else if (/adbypass.eu\/unblock/.test(url)) { + window.addEventListener('load', function() { + var linkElement = document.querySelector('.form__group > a:nth-child(5)'); + if (linkElement && linkElement.href) { + if (confirm('Do you want to redirect to ' + linkElement.href + '?')) { + window.location.assign(linkElement.href); + } + } + }); } })(); // ----- ----- ----- diff --git a/extra_bypasses/ad-maven.user.js b/extra_bypasses/ad-maven.user.js index 47f788f..c6b880c 100644 --- a/extra_bypasses/ad-maven.user.js +++ b/extra_bypasses/ad-maven.user.js @@ -5,6 +5,7 @@ // @include /adbypass.eu/ // @grant GM_setValue // @grant GM_getValue +// @grant GM_deleteValue // @run-at document-start // ==/UserScript== @@ -15,7 +16,7 @@ if (/(free-content.pro|((ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com))\/s\?/.test(url)) { GM_setValue('savedShortlink', url); window.location.assign('https://adbypass.eu/'); - } else if (/adbypass.eu/.test(url)) { + } else if (/adbypass.eu/.test(url) && !url.includes('/unblock')) { window.addEventListener("load", function(event) { var savedShortlink = GM_getValue('savedShortlink', null); var inputField = document.querySelector('#inputt'); @@ -24,6 +25,15 @@ GM_deleteValue('savedShortlink'); } }); + } else if (/adbypass.eu\/unblock/.test(url)) { + window.addEventListener('load', function() { + var linkElement = document.querySelector('.form__group > a:nth-child(5)'); + if (linkElement && linkElement.href) { + if (confirm('Do you want to redirect to ' + linkElement.href + '?')) { + window.location.assign(linkElement.href); + } + } + }); } })(); // ----- ----- -----