Adds subtitle YIFYSubs link to KAT pages
当前为
// ==UserScript==
// @name Subs Adder [KAT]
// @namespace SexyWolfie
// @include *kickass.to/*.html*
// @version 2.1
// @grant none
// @description Adds subtitle YIFYSubs link to KAT pages
// ==/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(' <br><br> <a title="Check YIFY Subtitles" href="http://www.yifysubtitles.com/movie-imdb/tt'+imdbID+'" class="postLink icon16 textButton isearch"><span></span>check for subtitles</a>');
}