Bypass FileCrypt

Bypass FileCrypt and get the original link!

As of 2020-11-27. See the latest version.

  1. // ==UserScript==
  2. // @name Bypass FileCrypt
  3. // @namespace StephenP
  4. // @version 1.1.4
  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. // @grant GM.xmlHttpRequest
  12. // ==/UserScript==
  13. (function () {
  14. GM.xmlHttpRequest({
  15. method: "GET",
  16. url: document.location.href,
  17. onload: function(response) {
  18. window.stop();
  19. const a=response.responseText.lastIndexOf(document.location.host+"/index.php?Action");
  20. const b=response.responseText.indexOf('">',a);
  21. top.location.href="https://"+response.responseText.substring(a,b);
  22. }
  23. });
  24. })();