'He or she' to 'They'

'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.

What is 'He or she' to 'They'?

'He or she' to 'They' is a Chrome extension developed by Jack Blalock, and its main feature is "'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.".

Download 'He or she' to 'They' Extension CRX File

Download 'He or she' to 'They' extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        I've added some additional gender neutral replacements:

his or her -> their
man or woman -> person
(s)he -> they

Clicking the extension's button in Chrome will now also run the script. Since the script only runs on its own when the page first loads, some dynamically loading pages (such as facebook) will still show the unreplaced text. Clicking the button will scan the document as it is now and do all the replacements.                    

Extension Basic Information

Name 'He or she' to 'They' 'He or she' to 'They'
ID pdpkgmmkcbgalkljkodbddhlnmbnhakp
Official URL https://chrome.google.com/webstore/detail/he-or-she-to-they/pdpkgmmkcbgalkljkodbddhlnmbnhakp
Description 'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.
File Size 4.29 KB
Installation Count 304
Current Version 3.0
Last Updated 2018-04-08
Publish Date 2018-04-08
Rating 5.00/5 Total 5 Ratings
Developer Jack Blalock
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "'He or she' to 'They'",
    "version": "3.0",
    "description": "'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.",
    "permissions": [
        "activeTab"
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "button.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "*:\/\/*\/*"
            ],
            "js": [
                "they.js"
            ],
            "run_at": "document_end"
        }
    ]
}