// ==UserScript== // @name Bypass FileCrypt // @namespace StephenP // @version 1.1.4 // @description Bypass FileCrypt and get the original link! // @author StephenP // @match http://filecrypt.cc/Link/* // @match http://www.filecrypt.cc/Link/* // @match http://filecrypt.co/Link/* // @match http://www.filecrypt.co/Link/* // @grant GM.xmlHttpRequest // @downloadURL none // ==/UserScript== (function () { window.stop(); GM.xmlHttpRequest({ method: "GET", url: document.location.href, onload: function(response) { const a=response.responseText.lastIndexOf(document.location.host+"/index.php?Action"); const b=response.responseText.indexOf('">',a); top.location.href="https://"+response.responseText.substring(a,b); } }); })();