Removes link shorteners from all kickass websites.
// ==UserScript==
// @name KAT Link Unshortener
// @namespace Violentmonkey Scripts
// @include /^http?s:\/\/(thekat|kickasstorrents|kkickass|kkat|kickass-kat|kickasst|kickasshydra)\..+\/.+/
// @grant none
// @version 0.1
// @author Samad Khafi
// @license MIT
// @description Removes link shorteners from all kickass websites.
// ==/UserScript==
(function() {
console.log("KAT Link Unshortener started...");
var links = document.getElementsByTagName("a");
for(var i=0;i < links.length; i++){
if(links[i].href.indexOf("mylink") != -1) {
links[i].href = decodeURIComponent(links[i].href.split("?url=")[1]);
}
}
})();