Highlights HIT title and "View a HIT in this group" for the Masters qualification. Must be logged in and be a Master for the highlighting to work.
当前为
// ==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
// @description Highlights HIT title and "View a HIT in this group" for the Masters qualification. Must be logged in and be a Master for the highlighting to work.
// @version 0.0.1.20150602091453
// ==/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');
}
});
});