'He or she' to 'They'

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

O que é 'He or she' to 'They'?

'He or she' to 'They' é uma extensão do Chrome desenvolvida por Jack Blalock, e sua principal característica é "'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.".

Baixar o arquivo CRX da Extensão 'He or she' to 'They'

Baixe arquivos de extensão 'He or she' to 'They' no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome 'He or she' to 'They' 'He or she' to 'They'
ID pdpkgmmkcbgalkljkodbddhlnmbnhakp
URL Oficial https://chrome.google.com/webstore/detail/he-or-she-to-they/pdpkgmmkcbgalkljkodbddhlnmbnhakp
Descrição 'They' as a singular pronoun is gramatically correct, you absolute fuckwaffle.
Tamanho do Arquivo 4.29 KB
Contagem de Instalações 304
Versão Atual 3.0
Última Atualização 2018-04-08
Data de Publicação 2018-04-08
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor Jack Blalock
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}