ColorThief

Extracts a color palette from an image

ColorThiefとは何ですか?

ColorThiefはMohamad Ahmadiによって開発されたChromeの拡張機能で、その主な機能は「Extracts a color palette from an image」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Created using Color Thief script (http://lokeshdhakar.com/projects/color-thief/)                    

拡張機能の基本情報

名前 ColorThief ColorThief
ID medkdmfcfbfkbekkgcafeojmkadhidln
公式URL https://chrome.google.com/webstore/detail/colorthief/medkdmfcfbfkbekkgcafeojmkadhidln
説明 Extracts a color palette from an image
ファイルサイズ 807 KB
インストール数 123
現在のバージョン 0.2.0
最終更新日 2015-01-05
公開日 2015-01-05
評価 4.50/5 合計 2 レビュー
開発者 Mohamad Ahmadi
支払い方法 free
拡張機能のウェブサイト https://github.com/mhahmadi/ColorThiefExtension
ヘルプページのURL https://github.com/mhahmadi/ColorThiefExtension/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ColorThief",
    "version": "0.2.0",
    "manifest_version": 2,
    "description": "Extracts a color palette from an image",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/thief-19.png",
            "38": "images\/thief-38.png"
        },
        "default_title": "ColorThief"
    },
    "icons": {
        "16": "images\/thief-16.png",
        "48": "images\/thief-48.png",
        "128": "images\/thief-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "bower_components\/jQuery\/dist\/jquery.min.js",
                "bower_components\/jQuery\/dist\/jquery.min.map",
                "bower_components\/handlebars\/handlebars.min.js",
                "bower_components\/color-thief\/dist\/color-thief.min.js",
                "content-script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "web_accessible_resources": [
        "thief.png",
        "control-panel.html",
        "palette.html"
    ]
}