mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2025-01-01 17:33:00 +05:00
b0005a9521
-removed facebook by default -added Bypass for linkspy.cc + clicksfly.com -added Bypass for mundopolo.net
28 lines
879 B
JavaScript
28 lines
879 B
JavaScript
// ==UserScript==
|
|
// @name LinkSpy concatenated with clicksfly.com Bypass
|
|
// @match https://linkspy.cc/tr/*
|
|
// @run-at document-start
|
|
// ==/UserScript==
|
|
|
|
// ----- Bypass for linkspy.cc + clicksfly.com -----
|
|
(function() {
|
|
'use strict';
|
|
if ( window.location.href.startsWith('https://linkspy.cc/tr/') ) {
|
|
|
|
//----Bypass linkspy.cc----
|
|
var encodedUrl = window.location.href.split('/tr/')[1];
|
|
var decodedUrl = atob(encodedUrl);
|
|
if (!decodedUrl.startsWith('https://clicksfly.com/')) {
|
|
window.location.assign(decodedUrl);
|
|
|
|
//----Bypass clicksfly.com----
|
|
} else if (decodedUrl.startsWith('https://clicksfly.com/')) {
|
|
var urlParam = new URLSearchParams(decodedUrl).get('url');
|
|
var decodedURL2 = atob(urlParam);
|
|
window.location.assign(decodedURL2);
|
|
}
|
|
}
|
|
|
|
})();
|
|
// ----- ----- -----
|
|
|