Bypass FileCrypt and get the original link!
Verze ze dne
// ==UserScript==
2
// @name Bypass FileCrypt
3
// @namespace StephenP
4
// @version 1.1.5
5
// @description Bypass FileCrypt and get the original link!
6
// @author StephenP
7
// @match http://filecrypt.cc/Link/*
8
// @match http://www.filecrypt.cc/Link/*
9
// @match http://filecrypt.co/Link/*
10
// @match http://www.filecrypt.co/Link/*
11
// @run-at document-end
12
// ==/UserScript==
13
(function () {
14
window.stop();
15
const a=document.body.innerHTML.lastIndexOf(document.location.host+"/index.php?Action");
16
top.location.href="https://"+document.body.innerHTML.substring(a,document.body.innerHTML.indexOf('<',a)-1).replace('&', '&');
17
})();