Greasy Fork is available in English.

Bypass FileCrypt

Bypass FileCrypt and get the original link! Try this version first. If Bypass FileCrypt shows a "2" in the page and doesn't redirect to the final page, then remove this script and try Bypass FileCrypt (XHR) instead.

As of 30.11.2020. See ბოლო ვერსია.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

  1. // ==UserScript==
  2. // @name Bypass FileCrypt
  3. // @namespace StephenP
  4. // @version 1.2.0
  5. // @description Bypass FileCrypt and get the original link! Try this version first. If Bypass FileCrypt shows a "2" in the page and doesn't redirect to the final page, then remove this script and try Bypass FileCrypt (XHR) instead.
  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. // @match https://filecrypt.cc/Link/*
  12. // @match https://www.filecrypt.cc/Link/*
  13. // @match https://filecrypt.co/Link/*
  14. // @match https://www.filecrypt.co/Link/*
  15. // @run-at document-end
  16. // ==/UserScript==
  17. (function () {
  18. if(document.body.getElementsByTagName("SCRIPT").length==0){
  19. window.stop();
  20. const a=document.body.innerHTML.lastIndexOf("http");
  21. top.location.href=document.body.innerHTML.substring(a,document.body.innerHTML.indexOf('id=',a)+43).replace('&', '&');
  22. }
  23. })();