From 7f337b070cc3b2aa49e938507dcc5314d7758e18 Mon Sep 17 00:00:00 2001 From: Amm0ni4 Date: Fri, 16 Feb 2024 02:59:04 +0100 Subject: [PATCH] minor fixes --- Bypass_All_Shortlinks.meta.js | 2 +- Bypass_All_Shortlinks.user.js | 9 ++++----- extra_bypasses/simple_redirects.user.js | 9 ++++----- supported_sites.txt | 2 +- 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/Bypass_All_Shortlinks.meta.js b/Bypass_All_Shortlinks.meta.js index cbfa985..7ad11b1 100644 --- a/Bypass_All_Shortlinks.meta.js +++ b/Bypass_All_Shortlinks.meta.js @@ -665,7 +665,7 @@ // @include /(verpeliculasonline.org|subtituladas.com)\/enlace/ // @include /links.cuevana.ac\/short/ // @include /ouo.io/ -// @include /fc-lc.xyz/ +// @include /fc-lc.(xyz|com)/ // @include /1v.to\/t/ // @include /linkspy.cc\/tr/ // @include /((cybertyrant|profitshort|technorozen|hubdrive.me|bestadvise4u|newztalkies|aiotechnical|cryptonewzhub|techvybes|wizitales|101desires|gdspike).com|courselinkfree.us|10desires.org|theapknews.shop|trendzguruji.me)/ diff --git a/Bypass_All_Shortlinks.user.js b/Bypass_All_Shortlinks.user.js index 7bfccb2..f520e68 100644 --- a/Bypass_All_Shortlinks.user.js +++ b/Bypass_All_Shortlinks.user.js @@ -665,7 +665,7 @@ // @include /(verpeliculasonline.org|subtituladas.com)\/enlace/ // @include /links.cuevana.ac\/short/ // @include /ouo.io/ -// @include /fc-lc.xyz/ +// @include /fc-lc.(xyz|com)/ // @include /1v.to\/t/ // @include /linkspy.cc\/tr/ // @include /((cybertyrant|profitshort|technorozen|hubdrive.me|bestadvise4u|newztalkies|aiotechnical|cryptonewzhub|techvybes|wizitales|101desires|gdspike).com|courselinkfree.us|10desires.org|theapknews.shop|trendzguruji.me)/ @@ -1699,7 +1699,6 @@ const redirect = finalUrl => window.location.assign(finalUrl); const getParam = (url, param) => new URLSearchParams(url).get(param); const afterDOMLoaded = (callback) => document.addEventListener('DOMContentLoaded', callback); - const base64DecodeWithCleaning = (string, times) => {let decoded = string; for (let i = 0; i < times; i++) {decoded = atob(decoded.replace('ø', '').replace('+P', ''));}return decoded;} const isValidUrl = url => { try { new URL(url); return true; } catch (error) { return false; } }; const clickIfExists = (selector) => { let intervalId = setInterval(() => { let button = document.querySelector(selector); if (button) { clearInterval(intervalId); button.click(); } }, 1000); }; const clickIfExistsNonStop = (selector) => { let intervalId = setInterval(() => { let button = document.querySelector(selector + ':not(.disabled)'); if (button) { button.click(); } }, 500); }; @@ -1727,7 +1726,7 @@ /link.manudatos.com\/#!/.test(url) ? redirect(atob(atob(atob(url.split('#!')[1])))) : null; //intercambiosvirtuales.org - /1v.to\/t/.test(url) ? redirect(base64DecodeWithCleaning(url.split('/t/')[1], 5)) : null; + /1v.to\/t/.test(url) ? redirect(atob(atob(atob(atob( atob(url.split('/t/')[1]).replace('+P', '') ))))) : null; //anime-world.in and mandranime.com /(iconicblogger.com|segurosdevida.site)/.test(url) ? afterDOMLoaded(function() {redirect(document.getElementById('wpsafe-link').querySelector('a').getAttribute('onclick').match(/window\.open\('([^']*)'/)[1])}) : null; @@ -1746,8 +1745,8 @@ //shrinkme.us /shrinkme.us/.test(url) ? afterDOMLoaded(function() {clickIfNotDisabled('#invisibleCaptchaShortlink')}) : null; - //fc-lc.xyz - /fc-lc.xyz/.test(url) ? afterDOMLoaded(function() {clickIfNotDisabled('#invisibleCaptchaShortlink')}) : null; + //fc-lc + /fc-lc.(xyz|com)/.test(url) ? afterDOMLoaded(function() {clickIfNotDisabled('#invisibleCaptchaShortlink')}) : null; //shareus.io /shareus.io/.test(url) ? afterDOMLoaded(function() {clickIfExistsNonStop('#root > div > main > div.main-container-1 > div.main-container-2 > div:nth-child(1) > div.adunit-container > button')}) : null; diff --git a/extra_bypasses/simple_redirects.user.js b/extra_bypasses/simple_redirects.user.js index d941d24..374245f 100644 --- a/extra_bypasses/simple_redirects.user.js +++ b/extra_bypasses/simple_redirects.user.js @@ -15,7 +15,7 @@ // @include /(verpeliculasonline.org|subtituladas.com)\/enlace/ // @include /links.cuevana.ac\/short/ // @include /ouo.io/ -// @include /fc-lc.xyz/ +// @include /fc-lc.(xyz|com)/ // @include /1v.to\/t/ // @include /linkspy.cc\/tr/ // @include /((cybertyrant|profitshort|technorozen|hubdrive.me|bestadvise4u|newztalkies|aiotechnical|cryptonewzhub|techvybes|wizitales|101desires|gdspike).com|courselinkfree.us|10desires.org|theapknews.shop|trendzguruji.me)/ @@ -30,7 +30,6 @@ const redirect = finalUrl => window.location.assign(finalUrl); const getParam = (url, param) => new URLSearchParams(url).get(param); const afterDOMLoaded = (callback) => document.addEventListener('DOMContentLoaded', callback); - const base64DecodeWithCleaning = (string, times) => {let decoded = string; for (let i = 0; i < times; i++) {decoded = atob(decoded.replace('ø', '').replace('+P', ''));}return decoded;} const isValidUrl = url => { try { new URL(url); return true; } catch (error) { return false; } }; const clickIfExists = (selector) => { let intervalId = setInterval(() => { let button = document.querySelector(selector); if (button) { clearInterval(intervalId); button.click(); } }, 1000); }; const clickIfExistsNonStop = (selector) => { let intervalId = setInterval(() => { let button = document.querySelector(selector + ':not(.disabled)'); if (button) { button.click(); } }, 500); }; @@ -58,7 +57,7 @@ /link.manudatos.com\/#!/.test(url) ? redirect(atob(atob(atob(url.split('#!')[1])))) : null; //intercambiosvirtuales.org - /1v.to\/t/.test(url) ? redirect(base64DecodeWithCleaning(url.split('/t/')[1], 5)) : null; + /1v.to\/t/.test(url) ? redirect(atob(atob(atob(atob( atob(url.split('/t/')[1]).replace('+P', '') ))))) : null; //anime-world.in and mandranime.com /(iconicblogger.com|segurosdevida.site)/.test(url) ? afterDOMLoaded(function() {redirect(document.getElementById('wpsafe-link').querySelector('a').getAttribute('onclick').match(/window\.open\('([^']*)'/)[1])}) : null; @@ -77,8 +76,8 @@ //shrinkme.us /shrinkme.us/.test(url) ? afterDOMLoaded(function() {clickIfNotDisabled('#invisibleCaptchaShortlink')}) : null; - //fc-lc.xyz - /fc-lc.xyz/.test(url) ? afterDOMLoaded(function() {clickIfNotDisabled('#invisibleCaptchaShortlink')}) : null; + //fc-lc + /fc-lc.(xyz|com)/.test(url) ? afterDOMLoaded(function() {clickIfNotDisabled('#invisibleCaptchaShortlink')}) : null; //shareus.io /shareus.io/.test(url) ? afterDOMLoaded(function() {clickIfExistsNonStop('#root > div > main > div.main-container-1 > div.main-container-2 > div:nth-child(1) > div.adunit-container > button')}) : null; diff --git a/supported_sites.txt b/supported_sites.txt index 865fb92..05ff926 100644 --- a/supported_sites.txt +++ b/supported_sites.txt @@ -650,7 +650,7 @@ r1.foxylinks.site /(verpeliculasonline.org|subtituladas.com)\/enlace/ /links.cuevana.ac\/short/ /ouo.io/ -/fc-lc.xyz/ +/fc-lc.(xyz|com)/ /1v.to\/t/ /linkspy.cc\/tr/ /((cybertyrant|profitshort|technorozen|hubdrive.me|bestadvise4u|newztalkies|aiotechnical|cryptonewzhub|techvybes|wizitales|101desires|gdspike).com|courselinkfree.us|10desires.org|theapknews.shop|trendzguruji.me)/