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.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         MTurkGrind Gender Reassignment
// @author       Kerek
// @namespace    Kerek
// @version      0.2x
// @description  Display your choice of custom note/title under specified members' usernames. Can be used for reminders of people's genders, or anything else.
// @include             http://www.mturkgrind.com/*
// @include             http://mturkgrind.com/*
// @require		http://code.jquery.com/jquery-latest.min.js
// @grant       GM_log
// @copyright    2014
// ==/UserScript==

// v0.2x, 2015-01-17: updates by clickhappier for MTG migration from vbulletin to xenforo

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.messageUserInfo').each(function(){
	var n = $(this).find('a.username').eq(0);
	if (users[n.text()])
		$(this).find('a.username').last().after('<p><i>' + users[n.text()] + '</i></p>');
});