Genderizer

Highlight German and Spanish nouns by gender

What is Genderizer?

Genderizer is a Chrome extension developed by Sara Bee, and its main feature is "Highlight German and Spanish nouns by gender".

Extension Screenshots

screenshot

Download Genderizer Extension CRX File

Download Genderizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Genderizer Genderizer
ID cogknegaliooejgocobjbinmkgfnaknn
Official URL https://chromewebstore.google.com/detail/genderizer/cogknegaliooejgocobjbinmkgfnaknn
Description Highlight German and Spanish nouns by gender
File Size 562 KB
Installation Count 140
Current Version 1.0.0
Last Updated 2020-07-28
Publish Date 2020-07-28
Rating 5.00/5 Total 2 Ratings
Developer Sara Bee
Email [email protected]
Payment Type free
Extension Website https://github.com/SaraBee/Genderizer
Supported Languages 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"
    ]
}