Chromacy

Inspect webpages for users with different types of color blindness.

Chromacyとは何ですか?

ChromacyはArtem Legotinによって開発されたChromeの拡張機能で、その主な機能は「Inspect webpages for users with different types of color blindness.」です。

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Chromacy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Different types of color blindness affects a significant number of people. This extension helps you to test webpages for these users. It can be useful for for UX-designers and web-developers.                    

拡張機能の基本情報

名前 Chromacy Chromacy
ID cheffcoiecbknaodamfpeckocknfenkb
公式URL https://chrome.google.com/webstore/detail/chromacy/cheffcoiecbknaodamfpeckocknfenkb
説明 Inspect webpages for users with different types of color blindness.
ファイルサイズ 25.38 KB
インストール数 238
現在のバージョン 1.3
最終更新日 2018-02-20
公開日 2018-02-20
評価 4.60/5 合計 5 レビュー
開発者 Artem Legotin
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chromacy",
    "description": "Inspect webpages for users with different types of color blindness.",
    "version": "1.3",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "background",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}