Bypass FileCrypt

Bypass FileCrypt and get the original link!

目前为 2020-11-27 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Bypass FileCrypt
  3. // @namespace StephenP
  4. // @version 1.1.3
  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. var a=response.responseText.lastIndexOf(document.location.host+"/index.php?Action");
  20. var b=response.responseText.indexOf('</iframe>',a);
  21. if(b==-1){
  22. var b=response.responseText.indexOf('</script>',a);
  23. }
  24. var iframeId="https://"+response.responseText.substring(a,b-2);
  25. console.log(iframeId);
  26. top.location.href=iframeId;
  27. }
  28. });
  29. })();