mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-29 16:33:02 +05:00
15 lines
436 B
JavaScript
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])))));
|
|
}
|
|
})();
|
|
// ----- ----- -----
|
|
|