您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Adds download links for subtitles to every TV and movie torrent on KAT (addic7ed & subscene)
// ==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 // @author NotNeo // @include http*://katcr.co/torrent/* // @require https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // @version 1.1 // @grant none // ==/UserScript== var torrentTitle; var baseURL; $(function() { var section = $("div.my-2 > small").find("a[href*='/category/']:first").text(); if ( section == "TV" ) { torrentTitle = $("h1").text(); baseURL = "http://www.addic7ed.com/search.php?search="; torrentTitle = torrentTitle.replace(/\s/g, '+').replace(/\+{2,}/g, '+').replace(/^\+|\+$/g, ''); $(".col-sm a[title*='torrent Magnet link']").after(' <a rel="nofollow" class="button button--big button--icon-button button--special_icon" title="Download Subtitles" href="' + baseURL + torrentTitle + '"><img class="button--dark" src="http://www.addic7ed.com/favicon.ico" style="padding: 7px;" alt="Download subtitles for this torrent" width="30" height="30"> <span> Download Subtitles</span></a> '); } else if ( section == "Movies" ) { baseURL = "https://subscene.com/subtitles/title?q="; torrentTitle = $("h1").text(); torrentTitle = torrentTitle.replace(/\s/g, '+').replace(/\+{2,}/g, '+').replace(/^\+|\+$/g, ''); $(".col-sm a[title*='torrent Magnet link']").after(' <a rel="nofollow" class="button button--big button--icon-button button--special_icon" title="Download Subtitles" href="' + baseURL + torrentTitle + '"><img class="button--dark" src="http://www.subscene.com/favicon.ico" style="padding: 7px;" alt="Download subtitles for this torrent" width="30" height="30"> <span> Download Subtitles</span></a> '); } });