bypass-all-shortlinks-deblo.../extra_bypasses/mundopolo.net.user.js

16 lines
436 B
JavaScript
Raw Normal View History

// ==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/#!') ) {
2024-02-12 16:17:38 +05:00
window.location.assign(decodeURIComponent(atob(atob(atob(window.location.href.split('#!')[1])))));
}
})();
// ----- ----- -----