Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/4898f104a854e058354e67acb41afc16.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name mTurk - Highlight Masters
// @namespace thisisnotavalidnamespace
// @include https://www.mturk.com/mturk/sortsearchbar*
// @include https://www.mturk.com/mturk/searchbar*
// @include https://www.mturk.com/mturk/viewsearchbar*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js
// @version 1
// @description Highlights hits for masters on mturk.
// @downloadURL https://update.greasyfork.icu/scripts/6152/mTurk%20-%20Highlight%20Masters.user.js
// @updateURL https://update.greasyfork.icu/scripts/6152/mTurk%20-%20Highlight%20Masters.meta.js
// ==/UserScript==
this.$ = this.jQuery = jQuery.noConflict(true);
$().ready(function() {
$("td:Contains('Masters')").each(function(index) {
if ($(this).next().next().is(":Contains('You meet this qualification requirement')")) {
$(this).parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent()
// .find("[bgcolor*='CCDDE9']").css('background-color', 'FFE0E0');
.find("[bgcolor*='CCDDE9']").find("a").css('color', '8B0000');
}
});
});