Skips shorturl link redirect wait time
// ==UserScript==
// @name Cracked Games / skip advertisement wait sript
// @namespace shorturl_skip
// @encoding utf-8
// @description Skips shorturl link redirect wait time
// @match http://crackedgamespc.xyz/*
// @grant none
// @version 0.0.1.001
// ==/UserScript==
(function() {
window.location.replace(decodeURIComponent('http'+window.location.href.split('?xurl=')[1]));
})();