Genderizer

Highlight German and Spanish nouns by gender

O que é Genderizer?

Genderizer é uma extensão do Chrome desenvolvida por Sara Bee, e sua principal característica é "Highlight German and Spanish nouns by gender".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Genderizer

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

                        Genderizer is a Chrome extension that helps advanced language learners build stronger associations between nouns and their gender by color-coding them in the browser. 

It currently offers German and Spanish language support, and the colors are fully customizable to your preference and accessibility needs.                    

Informações Básicas da Extensão

Nome Genderizer Genderizer
ID cogknegaliooejgocobjbinmkgfnaknn
URL Oficial https://chromewebstore.google.com/detail/genderizer/cogknegaliooejgocobjbinmkgfnaknn
Descrição Highlight German and Spanish nouns by gender
Tamanho do Arquivo 562 KB
Contagem de Instalações 140
Versão Atual 1.0.0
Última Atualização 2020-07-28
Data de Publicação 2020-07-28
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Sara Bee
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/SaraBee/Genderizer
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Genderizer",
    "version": "1.0.0",
    "description": "Highlight German and Spanish nouns by gender",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistant": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "popup.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "options.js",
        "lexicon\/german_dictionary.json",
        "lexicon\/spanish_dictionary.json"
    ]
}