Changes "preview" links to "previewandaccept" on the mturkgrind forum.
// ==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
// ==/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 = "<a href='" + preview_link + "' target='_blank'><font color=" + link_color + "> ACCEPT</font></a>";
$(this).append (" |" + link_html);
});