Genderizer

Highlight German and Spanish nouns by gender

Cos'è Genderizer?

Genderizer è un'estensione di Chrome sviluppata da Sara Bee, e la sua funzione principale è "Highlight German and Spanish nouns by gender".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Genderizer

Scarica i file di estensione Genderizer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Genderizer Genderizer
ID cogknegaliooejgocobjbinmkgfnaknn
URL Ufficiale https://chromewebstore.google.com/detail/genderizer/cogknegaliooejgocobjbinmkgfnaknn
Descrizione Highlight German and Spanish nouns by gender
Dimensione del File 562 KB
Conteggio Installazioni 140
Versione Corrente 1.0.0
Ultimo Aggiornamento 2020-07-28
Data di Pubblicazione 2020-07-28
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Sara Bee
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/SaraBee/Genderizer
Lingue Supportate 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"
    ]
}