bypass-all-shortlinks-deblo.../extra_bypasses/linkspy.cc-clicksfly.com.user.js

27 lines
828 B
JavaScript
Raw Normal View History

// ==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----
2024-02-12 16:17:38 +05:00
var decodedUrl = atob(window.location.href.split('/tr/')[1]);
var urlParam = new URLSearchParams(decodedUrl).get('url');
if (!decodedUrl.startsWith('https://clicksfly.com/') || !urlParam) {
window.location.assign(decodedUrl);
//----Bypass clicksfly.com----
2024-02-12 16:17:38 +05:00
} else if (decodedUrl.startsWith('https://clicksfly.com/') && urlParam) {
window.location.assign(atob(urlParam));
}
}
})();
// ----- ----- -----