Genderizer

Highlight German and Spanish nouns by gender

Genderizerとは何ですか?

GenderizerはSara Beeによって開発されたChromeの拡張機能で、その主な機能は「Highlight German and Spanish nouns by gender」です。

拡張機能のスクリーンショット

screenshot

Genderizer拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}