您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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.)
// ==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://gf.qytechs.cn/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();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址