MTurk Auto-Accept changer for mturkgrind.com

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

当前为 2014-11-01 提交的版本,查看 最新版本

// ==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);    
    });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址