// ==UserScript==
// @name KAT [katcr.co] - Subtitle download links to TV and Movie torrents
// @description Adds download links for subtitles to every TV and movie torrent on KAT (addic7ed & subscene)
// @namespace NotNeo
// @include http*://katcr.co/new/torrents-details.php?*
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @version 1
// @grant none
// @downloadURL none
// ==/UserScript==
var torrentTitle;
var baseURL;
$(document).ready(function() {
if ( $("strong").find("a").not(":hidden").first().text() == "TV" ) {
torrentTitle = $(".myFrame-caption").not(":hidden").text();
baseURL = "http://www.addic7ed.com/search.php?search=";
for (i=0;i<100;i++) {
torrentTitle = torrentTitle.replace(" ", "+");
}
$("a[title='Download verified torrent file']").after('
Download Subtitles ');
} else if ( $("strong").find("a").first().text() == "Movies" ) {
torrentTitle = $(".myFrame-caption").not(":hidden").text();
baseURL = "https://subscene.com/subtitles/title?q=";
for (i=0;i<100;i++) {
torrentTitle = torrentTitle.replace(" ", "+");
}
$("a[title='Download verified torrent file']").after('
Download Subtitles ');
}
});