Gender Neutralize

De-gender language on the web

O que é Gender Neutralize?

Gender Neutralize é uma extensão do Chrome desenvolvida por soph-iest, e sua principal característica é "De-gender language on the web".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Gender Neutralize

Baixe arquivos de extensão Gender Neutralize 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

                        Extension to turn unnecessarily gendered words into their gender-neutral alternatives across the web. Currently covers traditional male and female pronouns, relational titles (e.g. "boyfriend", "daughter"), professional and occupational titles (e.g. "Congressman"), and more.

Options to toggle changing of personal pronouns on or off, as well as inputting a substitute for "dude", "guys", and other slang-based terms.                    

Informações Básicas da Extensão

Nome Gender Neutralize Gender Neutralize
ID iekijanpfmnhhpkabojigmglmmfgknoa
URL Oficial https://chromewebstore.google.com/detail/gender-neutralize/iekijanpfmnhhpkabojigmglmmfgknoa
Descrição De-gender language on the web
Tamanho do Arquivo 43.21 KB
Contagem de Instalações 294
Versão Atual 3.2.2
Última Atualização 2021-12-14
Data de Publicação 2018-07-14
Classificação 4.00/5 Total de 6 Avaliações
Desenvolvedor soph-iest
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/amity/gender-neutralize
URL da Página de Ajuda https://github.com/amity/gender-neutralize
URL da Página de Política de Privacidade https://github.com/soph-iest/gender-neutralize
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gender Neutralize",
    "short_name": "De-Gender",
    "version": "3.2.2",
    "author": "Sophie Debs",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "replacement.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "description": "De-gender language on the web",
    "icons": {
        "128": "img\/icon128.png",
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png"
    },
    "manifest_version": 2,
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}