'He or she' to 'They'

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

Was ist 'He or she' to 'They'?

'He or she' to 'They' ist eine Chrome-Erweiterung, die von Jack Blalock entwickelt wurde, und ihr Hauptmerkmal ist "'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.".

'He or she' to 'They'-Erweiterungs-CRX-Datei herunterladen

Laden Sie 'He or she' to 'They'-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name 'He or she' to 'They' 'He or she' to 'They'
ID pdpkgmmkcbgalkljkodbddhlnmbnhakp
Offizielle URL https://chrome.google.com/webstore/detail/he-or-she-to-they/pdpkgmmkcbgalkljkodbddhlnmbnhakp
Beschreibung 'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.
Dateigröße 4.29 KB
Installationsanzahl 304
Aktuelle Version 3.0
Letztes Update 2018-04-08
Veröffentlichungsdatum 2018-04-08
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler Jack Blalock
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}