// ==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 // @downloadURL 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(''); });