// ==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 // @downloadURL none // ==/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('

' + users[n.text()] + '

'); });