MTurk Auto-Accept changer for mturkgrind.com

Changes "preview" links to "previewandaccept" on the mturkgrind forum.

Verze ze dne 01. 11. 2014. Zobrazit nejnovější verzi.

// ==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);    
    });
长期地址
遇到问题?请前往 GitHub 提 Issues。