'He or she' to 'They'

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

Co je 'He or she' to 'They'?

'He or she' to 'They' je rozšíření Chrome vyvinuté Jack Blalock, a jeho hlavní funkcí je „'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.“.

Stáhnout soubor CRX rozšíření 'He or she' to 'They'

Stáhněte si soubory rozšíření 'He or she' to 'They' ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název 'He or she' to 'They' 'He or she' to 'They'
ID pdpkgmmkcbgalkljkodbddhlnmbnhakp
Oficiální URL https://chrome.google.com/webstore/detail/he-or-she-to-they/pdpkgmmkcbgalkljkodbddhlnmbnhakp
Popis 'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.
Velikost souboru 4.29 KB
Počet instalací 304
Aktuální Verze 3.0
Poslední Aktualizace 2018-04-08
Datum Vydání 2018-04-08
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář Jack Blalock
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}