Script to make illegal fandsub bankrupt!! this script to auto decode short link when you try download something. save your money. any request put it in feedback
当前为
// ==UserScript==
// @name Link Skipper
// @version 1.0
// @description Script to make illegal fandsub bankrupt!! this script to auto decode short link when you try download something. save your money. any request put it in feedback
// @author MeGaNeKo
// @match *://*/*
// @grant none
//@require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
// @namespace https://greasyfork.org/users/400139
// ==/UserScript==
$('a').each(function(){
var aaa = this.href;
var aab = aaa.toString()
var link = aab;
var bba = link.includes('?get=');
if (bba == true){
link = aab.replace('?get=','&url=')
};
var aac = link.includes('aHR0cH');
if (aac == true){
try {
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) {
}
}
})