Display your choice of custom note/title under specified members' usernames. Can be used for reminders of people's genders, or anything else.
当前为
// ==UserScript==
// @name MTurkGrind Gender Reassignment
// @author Kerek
// @namespace Kerek
// @version 0.1.1.1
// @description Display your choice of custom note/title under specified members' usernames. Can be used for reminders of people's genders, or anything else.
// @require http://code.jquery.com/jquery-latest.min.js
// @include http://www.mturkgrind.com/*
// @copyright 2014
// ==/UserScript==
var users = {
ZinGy:"guy",
Blue:"guy",
TissueHime:"guy",
Jaded:"girl",
electrolyte:"girl",
Skye:"girl",
jekjek:"guy",
aveline:"girl",
kryssyy:"girl",
jml:"guy",
Kerek:"guy",
'J D':"guy",
AngryRobotsInc:"girl"
// etc. Be sure to capitalize the names appropriately. Names with spaces require single-quotes. No comma after the final user.
};
$('div.username_container').each(function(){
var n = $(this).find('a').eq(0);
if (users[n.text()])
$(this).find('img').last().after('<p>' + users[n.text()] + '</p>');
});
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址