Bypass FileCrypt

Bypass FileCrypt and get the original link!

Fra 29.11.2020. Se den seneste versjonen.

  1. // ==UserScript==
  2. // @name Bypass FileCrypt
  3. // @namespace StephenP
  4. // @version 1.1.7
  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. // @run-at document-end
  12. // ==/UserScript==
  13. (function () {
  14. window.stop();
  15. const a=document.body.innerHTML.lastIndexOf("http");
  16. top.location.href=document.body.innerHTML.substring(a,document.body.innerHTML.indexOf('<',a)-2).replace('&amp;', '&');
  17. })();