mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-29 16:33:02 +05:00
b0005a9521
-removed facebook by default -added Bypass for linkspy.cc + clicksfly.com -added Bypass for mundopolo.net
19 lines
590 B
JavaScript
19 lines
590 B
JavaScript
// ==UserScript==
|
|
// @name mundopolo.net bypass
|
|
// @match https://m.mundopolo.net/#!*
|
|
// @run-at document-start
|
|
// ==/UserScript==
|
|
|
|
// ----- Bypass for mundopolo.net -----
|
|
(function() {
|
|
'use strict';
|
|
if ( window.location.href.startsWith('https://m.mundopolo.net/#!') ) {
|
|
var currentURL = window.location.href;
|
|
var encodedURL = currentURL.split('#!')[1]
|
|
var decodedURL = atob(atob(atob(encodedURL))); //base64 decode x3
|
|
decodedURL = decodeURIComponent(decodedURL);
|
|
window.location.assign(decodedURL);
|
|
}
|
|
})();
|
|
// ----- ----- -----
|
|
|