// ==UserScript== // @name MTurk Auto-Accept changer for mturkgrind.com // @version 0.2 // @namespace Kerek // @description Changes "preview" links to "previewandaccept" on the mturkgrind forum. // @require http://code.jquery.com/jquery-latest.min.js // @include http://www.mturkgrind.com/* // @copyright 2013+, You // @downloadURL none // ==/UserScript== $('a[href*="/mturk/preview?"]').each(function(){ var preview_link=$(this).attr('href').replace("preview?", "previewandaccept?"); var link_color = $(this).find('font').attr('color'); var link_html = " ACCEPT"; $(this).append (" |" + link_html); });