Genderizer

Highlight German and Spanish nouns by gender

ما هو Genderizer؟

Genderizer هو إضافة Chrome تم تطويرها بواسطة Sara Bee، والميزة الرئيسية لها هي "Highlight German and Spanish nouns by gender".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Genderizer

قم بتنزيل ملفات الامتداد Genderizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Genderizer Genderizer
ID cogknegaliooejgocobjbinmkgfnaknn
عنوان URL الرسمي https://chromewebstore.google.com/detail/genderizer/cogknegaliooejgocobjbinmkgfnaknn
الوصف Highlight German and Spanish nouns by gender
حجم الملف 562 KB
عدد التثبيتات 140
النسخة الحالية 1.0.0
آخر تحديث 2020-07-28
تاريخ النشر 2020-07-28
تقييم 5.00/5 مجموع تقييمات 2
المطور Sara Bee
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/SaraBee/Genderizer
اللغات المدعومة 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"
    ]
}