Greasy Fork

Trakt Downloader

Trakt.tv Watchlist download buttons.

目前为 2016-03-15 提交的版本。查看 最新版本

// ==UserScript==
// @name         Trakt Downloader
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Trakt.tv Watchlist download buttons.
// @author       Tusk
// @match        https://trakt.tv/users/*/watchlist
// @grant        none
// ==/UserScript==
/* jshint -W097 */
'use strict';

$('.actions').each(function(index) {
    var $this = $(this),
        name_of_item = $this.parents('.grid-item').find('h3').text();
    $(this).append('<a href="https://kat.cr/usearch/' + name_of_item + ' 720p/?field=time_add&sorder=desc" target="_blank"><img src="http://teachingresources.grantadesign.com/images/icons/icon-circle-arrow-down_grey.png" style="width: 25px;height: 25px;margin-top:-5px;" /></a>');
});