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.

当前为 2020-11-30 提交的版本,查看 最新版本

  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. })();