'He or she' to 'They'

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

Hvad er 'He or she' to 'They'?

'He or she' to 'They' er en Chrome-udvidelse udviklet af Jack Blalock, og dens hovedfunktion er "'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.".

Download 'He or she' to 'They'-udvidelses-CRX-fil

Download 'He or she' to 'They'-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn 'He or she' to 'They' 'He or she' to 'They'
ID pdpkgmmkcbgalkljkodbddhlnmbnhakp
Officiel URL https://chrome.google.com/webstore/detail/he-or-she-to-they/pdpkgmmkcbgalkljkodbddhlnmbnhakp
Beskrivelse 'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.
Filstørrelse 4.29 KB
Antal Installationer 304
Nuværende Version 3.0
Senest Opdateret 2018-04-08
Udgivelsesdato 2018-04-08
Bedømmelse 5.00/5 Samlet 5 Bedømmelser
Udvikler Jack Blalock
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}