Genderizer

Highlight German and Spanish nouns by gender

Genderizer là gì?

Genderizer là một tiện ích mở rộng Chrome được phát triển bởi Sara Bee, và tính năng chính của nó là "Highlight German and Spanish nouns by gender".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Genderizer

Tải xuống các tệp mở rộng Genderizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Genderizer Genderizer
ID cogknegaliooejgocobjbinmkgfnaknn
URL Chính Thức https://chromewebstore.google.com/detail/genderizer/cogknegaliooejgocobjbinmkgfnaknn
Mô tả Highlight German and Spanish nouns by gender
Kích Thước Tệp 562 KB
Số Lần Cài Đặt 140
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-07-28
Ngày Phát Hành 2020-07-28
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Sara Bee
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SaraBee/Genderizer
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}