Turk - Transfer Earnings Hide and Alert

Hides the Earnings column and changes the Total Earnings tab to green when a threshold has been met. (Modify the values manually within the script.)

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name          Turk - Transfer Earnings Hide and Alert
// @include       https://www.mturk.com/mturk/dashboard*
// @require       http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js
// @description   Hides the Earnings column and changes the Total Earnings tab to green when a threshold has been met. (Modify the values manually within the script.)
// @version     1
// @namespace https://greasyfork.org/users/6438
// ==/UserScript==

//The variable below gets the Transfer Earnings Reward

var toTransfer = parseFloat($('#transfer_earnings .reward') .text() .substr(1) .replace(',', ''));

//The below changes the background of Total Earnings
//Change "50" to whatever you wish to be alerted to.
//"50" alerts you when "$50" is available to transfer by changing the background color.
//"#006600" refers to the color green in HEX.
//As a reminder, you must refresh the page in order for it to update.

if (toTransfer >= 50) {
	$("td.white_text_14_bold:Contains('Total Earnings')").css('background-color', '#006600');
}

// The below removes "Earnings Available" table

$(".metrics-table-first-header:Contains('Earnings Available')").parent().parent().parent().parent().remove();