Greasy Fork is available in English.

adclicker-bypass

Bypass some shorteners

< Părere la script-ul adclicker-bypass

Recenzie: Bun, script-ul merge

§
Postat în: 12-03-2024
Editat în: 12-03-2024

A site that uses adclick.io now is redirecting to discoveryultrasecure.com just after clicking the adclick link.

Could you add support for discoveryultrasecure.com? This inline diff has worked for me:

--- adclicker-bypass	2024-03-12 20:19:36.701257852 +0100
+++ adclicker-bypass.new	2024-03-12 20:20:44.094982362 +0100
@@ -5,6 +5,7 @@
 // @author       Rust1667
 // @match        https://adclicker.io/url/#*
 // @match        https://adclicker.info/url/#*
+// @match        https://discoveryultrasecure.com/url/#*
 // @run-at       document-start
 // @namespace    https://greasyfork.org/users/980489
 // ==/UserScript==
@@ -29,8 +30,11 @@
 
 function getDecodedURL() {
   var currentURL = window.location.href;
-  if (currentURL.match(/^https:\/\/adclicker\.(io|info)\/url\/#/) !== null) {
-    var encodedURL = currentURL.replace('https://adclicker.io/url/#', '').replace('https://adclicker.info/url/#', '');
+  if (currentURL.match(/^https:\/\/adclicker\.(io|info)\/url\/#/) !== null ||
+      currentURL.match(/^https:\/\/discoveryultrasecure\.com\/url\/#/) !== null) {
+    var encodedURL = currentURL.replace('https://adclicker.io/url/#', '')
+                               .replace('https://adclicker.info/url/#', '')
+                               .replace('https://discoveryultrasecure.com/url/#', '');
     var decodedURL = atob(atob(atob(encodedURL))); //3x base64 decode
     decodedURL = removeCharactersBeforeHttp(decodedURL);
     decodedURL = decodeURIComponent(decodedURL);

regards,

carles

Rust1667Autor
§
Postat în: 12-03-2024

thanks but can you share what site is using discoveryultrasecure.com? So I can test myself too

§
Postat în: 13-03-2024
Editat în: 13-03-2024

Yeah, it's sinsitio.site, by example the links in https://www.sinsitio.site/series/7411-star-wars-la-remesa-mala-t1.html

§
Postat în: 13-03-2024
Editat în: 13-03-2024

They have start to use yourihollier.com instead of discoveryultrasecure.com :/

Rust1667Autor
§
Postat în: 13-03-2024

thanks, I just added that domain now too.

Postează un raspuns

Autentifică-te pentru a posta un răspuns.