NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Egalitarian Pronouns // @namespace http://tampermonkey.net/ // @version 0.1 // @description Pronouns of the P/people, by the P/people, and for the P/people // @author WhyTrustTomHanks // @match *://fetlife.com/* // @require http://code.jquery.com/jquery-latest.js // @licence MIT // ==/UserScript== (function() { 'use strict'; $('p, li, h1, h2, h3, h4, h5, h6').each(function(){ var web_page = $(this).html(); web_page = web_page.replace(/His/, 'his'); web_page = web_page.replace(/Her/, 'her'); web_page = web_page.replace(/Hers/, 'hers'); web_page = web_page.replace(/She/, 'she'); web_page = web_page.replace(/W\/we/, 'we'); web_page = web_page.replace(/U\/us/, 'us'); web_page = web_page.replace(/He/, 'he'); web_page = web_page.replace(/My/, 'my'); web_page = web_page.replace(/Me/, 'me'); $(this).html(web_page); }); })();