您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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'); } }); });