'He or she' to 'They'

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

Qu'est-ce que 'He or she' to 'They' ?

'He or she' to 'They' est une extension Chrome développée par Jack Blalock, et sa fonction principale est "'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.".

Télécharger le fichier CRX de l'extension 'He or she' to 'They'

Téléchargez les fichiers d'extension 'He or she' to 'They' au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom 'He or she' to 'They' 'He or she' to 'They'
ID pdpkgmmkcbgalkljkodbddhlnmbnhakp
URL Officiel https://chrome.google.com/webstore/detail/he-or-she-to-they/pdpkgmmkcbgalkljkodbddhlnmbnhakp
Description 'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.
Taille du Fichier 4.29 KB
Nombre d'Installations 304
Version Actuelle 3.0
Dernière Mise à Jour 2018-04-08
Date de Publication 2018-04-08
Évaluation 5.00/5 Total 5 Évaluations
Développeur Jack Blalock
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}