Genderizer

Highlight German and Spanish nouns by gender

Apa itu Genderizer?

Genderizer adalah ekstensi Chrome yang dikembangkan oleh Sara Bee, dan fitur utamanya adalah "Highlight German and Spanish nouns by gender".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Genderizer

Unduh file ekstensi Genderizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Genderizer Genderizer
ID cogknegaliooejgocobjbinmkgfnaknn
URL Resmi https://chromewebstore.google.com/detail/genderizer/cogknegaliooejgocobjbinmkgfnaknn
Deskripsi Highlight German and Spanish nouns by gender
Ukuran File 562 KB
Jumlah Instalasi 140
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2020-07-28
Tanggal Publikasi 2020-07-28
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Sara Bee
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/SaraBee/Genderizer
Bahasa yang Didukung 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"
    ]
}