// ==UserScript==
// @name Subs Adder [KAT]
// @namespace SexyWolfie
// @include *kickass.to/*.html*
// @version 2.1
// @grant none
// @description Adds subtitle YIFYSubs link to KAT pages
// @downloadURL none
// ==/UserScript==
//Grab IMDB ID
var imdbID = $('.dataList [href*="www.imdb.com/title/"]').html();
//Make sure it's a movie
if ($('span[id^="cat_"]').html().indexOf('Movies') >= 0) {
$('.dataList .textButton[href^="/bookmarks/"]').after('
check for subtitles');
}