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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}