Link skipper

Script to make illegal fandsub bankrupt!! this script to auto decode short link when you try download something. save your time, save your money. any request / error put it in feedback

目前為 2019-11-23 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Link skipper
// @namespace https://gf.qytechs.cn/users/400139
// @version      1.1.2
// @description  Script to make illegal fandsub bankrupt!! this script to auto decode short link when you try download something. save your time, save your money. any request / error put it in feedback
// @author       MeGaNeKo(めがねこ)
// @match        *://*/*
// @exclude      *//*uploaded.net/*
// @grant        none
//@require       https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
// ==/UserScript==

$('a').each(function(){
var aaa = this.href;
var aab = aaa.toString();
var link = aab;
var aac = link.includes('aHR0cH');
var aag = link.includes('url=htt');
if (aac == true){
try {
    var bba = link.includes('?get=');
    if (bba == true){
		link = aab.replace('?get=','&url=');
	};
	var aad = link.replace('&type=2','').split("&url=")[1];
	var aae = aad.includes('=');
	if (aae == true){
	    aad = aad.replace('=','');
	};
	var aaf = atob(aad);
	    $(this).attr("href", aaf);
	}catch(err) {
	    $(this).attr("href", aaa)
	}
}else if (aag == true){
try {
	var aah = link.split("url=")[1];
	    $(this).attr("href", aah);
	}catch(err) {
	    $(this).attr("href", aaa)
	}
}
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址