Bypass FileCrypt and get the original link!
当前为
// ==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
// ==/UserScript==
(function () {
GM.xmlHttpRequest({
method: "GET",
url: document.location.href,
onload: function(response) {
window.stop();
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);
}
});
})();