您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Trakt.tv Watchlist download buttons.
当前为
// ==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>'); });