Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/84bde3689c103e005488e58f65781e9f.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==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);
}
});
})();