Greasy Fork is available in English.

Bypass FileCrypt

Bypass FileCrypt and get the original link!

2020-05-13 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

  1. // ==UserScript==
  2. // @name Bypass FileCrypt
  3. // @namespace StephenP
  4. // @version 1.0
  5. // @description Bypass FileCrypt and get the original link!
  6. // @author StephenP
  7. // @match http://filecrypt.cc/Link/*
  8. // @grant GM.xmlHttpRequest
  9. // ==/UserScript==
  10. (function () {
  11. GM.xmlHttpRequest({
  12. method: "GET",
  13. url: document.location.href,
  14. onload: function(response) {
  15. window.stop();
  16. var a=response.responseText.indexOf("https://filecrypt.cc/index.php?Action");
  17. var iframeId=response.responseText.substring(a);
  18. var b=response.responseText.indexOf('</iframe>');
  19. iframeId=response.responseText.substring(a,b-2);
  20. window.open(iframeId,"_self");
  21. }
  22. });
  23. })();