Greasy Fork is available in English.

Bypass FileCrypt

Bypass FileCrypt and get the original link!

2020/11/28のページです。最新版はこちら。

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
  1. // ==UserScript==
  2.  
  3.  
  4. 2
  5. // @name Bypass FileCrypt
  6.  
  7.  
  8. 3
  9. // @namespace StephenP
  10.  
  11.  
  12. 4
  13. // @version 1.1.5
  14.  
  15.  
  16. 5
  17. // @description Bypass FileCrypt and get the original link!
  18.  
  19.  
  20. 6
  21. // @author StephenP
  22.  
  23.  
  24. 7
  25. // @match http://filecrypt.cc/Link/*
  26.  
  27.  
  28. 8
  29. // @match http://www.filecrypt.cc/Link/*
  30.  
  31.  
  32. 9
  33. // @match http://filecrypt.co/Link/*
  34.  
  35.  
  36. 10
  37. // @match http://www.filecrypt.co/Link/*
  38.  
  39.  
  40. 11
  41. // @run-at document-end
  42.  
  43.  
  44. 12
  45. // ==/UserScript==
  46.  
  47.  
  48. 13
  49. (function () {
  50.  
  51.  
  52. 14
  53. window.stop();
  54.  
  55.  
  56. 15
  57. const a=document.body.innerHTML.lastIndexOf(document.location.host+"/index.php?Action");
  58.  
  59.  
  60. 16
  61. top.location.href="https://"+document.body.innerHTML.substring(a,document.body.innerHTML.indexOf('<',a)-1).replace('&amp;', '&');
  62.  
  63.  
  64. 17
  65. })();