// ==UserScript== // @name KAT - Shorten Achievement Names // @namespace ShortenAcv // @version 1.00 // @description Shortens the names of the achievements into acronyms // @require http://code.jquery.com/jquery-latest.js // @match http://kickass.to/user/* // @match https://kickass.to/user/* // @downloadURL none // ==/UserScript== // Available modes: // 0 - Shorten and show (Default) // 1 - Shorten, but hide automatically (Toggle can be used to show them) var mode = 0; $('a[href^="/achievements/"][href!="/achievements/"]').each(function(){ var temp = $(this).text().replace("-", " "); var arr = temp.split(" "); var result = ""; for (var x=0; xtoggle achievements'); if (mode == 1) { $('.achTable > tbody').hide(); }