MyShows: add KickAss.to

Add icon for KickAss.to torrent tracker for each TV series

目前為 2015-11-22 提交的版本,檢視 最新版本

// ==UserScript==
// @name        MyShows: add KickAss.to
// @namespace   none
// @description Add icon for KickAss.to torrent tracker for each TV series
// @include     http://myshows.me/profile/
// @match       http://myshows.me/profile/
// @version     0.5.2
// @grant       none
// ==/UserScript==


$(function(){
    $('div.plateHint').remove();
    $("span[class^='subHeader show'").after(function(){
            var tv_urls = {
                "Doctor Who": "https://kat.cr/doctor-who-2005-tv1763/",
                "My Little Pony: Friendship is Magic": "https://kat.cr/my-little-pony-friendship-is-magic-tv12949/",
                "Guardians of the Galaxy": "https://kat.cr/marvel-s-guardians-of-the-galaxy-tv24154/",
                "Ash vs Evil Dead": "https://kat.cr/ash-vs-evil-dead-tv25084/",
                "Jekyll & Hyde": "https://kat.cr/jekyll-hyde-tv25058/"
            };
            var name = $(this).text();
            var tv_series=encodeURIComponent(name.replace(/[^a-z0-9\s]/gi, ''));
            var url = 'https://kickass.to/usearch/'+ tv_series + '/?field=time_add&sorder=desc';
            if (name in tv_urls) url = tv_urls[name];
            return '<a target="_blank" title="kickass.to" href="'+ url + '">   <img src="https://kat.cr/content/images/logos/kickasstorrents_48x48.png" height="24"  width="24"></a>';
     }); 

});