Greasy Fork

MTurkGrind Gender Reassignment

Display your choice of custom note/title under specified members' usernames. Can be used for reminders of people's genders, or anything else.

当前为 2014-11-16 提交的版本,查看 最新版本

// ==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>');
});