Color Palette Finder

Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.

Color Palette Finderとは何ですか?

Color Palette Finderはjamesaburnellによって開発されたChromeの拡張機能で、その主な機能は「Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Find the top 6 most commonly used colors on any site! Creates a palette of HEX and RGB values. Clicking on one of the colors will copy the HEX value to your clipboard.                    

拡張機能の基本情報

名前 Color Palette Finder Color Palette Finder
ID acijagaddpagpgcjdcoigjkmeiengplp
公式URL https://chromewebstore.google.com/detail/color-palette-finder/acijagaddpagpgcjdcoigjkmeiengplp
説明 Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.
ファイルサイズ 28.27 KB
インストール数 898
現在のバージョン 0.0.2
最終更新日 2016-01-08
公開日 2016-01-08
評価 2.60/5 合計 5 レビュー
開発者 jamesaburnell
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Palette Finder",
    "description": "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "cpflogo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "palette-finder.js"
            ]
        }
    ]
}