您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass FileCrypt and get the original link!
当前为
- // ==UserScript==
- 2
- // @name Bypass FileCrypt
- 3
- // @namespace StephenP
- 4
- // @version 1.1.5
- 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(document.location.host+"/index.php?Action");
- 16
- top.location.href="https://"+document.body.innerHTML.substring(a,document.body.innerHTML.indexOf('<',a)-1).replace('&', '&');
- 17
- })();