bypass-all-shortlinks-deblo.../extra_bypasses/mundopolo.net.user.js
2024-02-12 12:17:38 +01:00

15 lines
436 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/#!') ) {
window.location.assign(decodeURIComponent(atob(atob(atob(window.location.href.split('#!')[1])))));
}
})();
// ----- ----- -----