'He or she' to 'They'

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

Vad är 'He or she' to 'They'?

'He or she' to 'They' är en Chrome-tillägg utvecklad av Jack Blalock, och dess huvudfunktion är "'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.".

Ladda ner 'He or she' to 'They'-förlängningens CRX-fil

Ladda ner 'He or she' to 'They'-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn 'He or she' to 'They' 'He or she' to 'They'
ID pdpkgmmkcbgalkljkodbddhlnmbnhakp
Officiell webbadress https://chrome.google.com/webstore/detail/he-or-she-to-they/pdpkgmmkcbgalkljkodbddhlnmbnhakp
Beskrivning 'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.
Filstorlek 4.29 KB
Antal Installationer 304
Aktuell Version 3.0
Senast Uppdaterad 2018-04-08
Publiceringsdatum 2018-04-08
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare Jack Blalock
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}