ColorThief

Extracts a color palette from an image

What is ColorThief?

ColorThief is a Chrome extension developed by Mohamad Ahmadi, and its main feature is "Extracts a color palette from an image".

Extension Screenshots

screenshot
screenshot

Download ColorThief Extension CRX File

Download ColorThief extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name ColorThief ColorThief
ID medkdmfcfbfkbekkgcafeojmkadhidln
Official URL https://chrome.google.com/webstore/detail/colorthief/medkdmfcfbfkbekkgcafeojmkadhidln
Description Extracts a color palette from an image
File Size 807 KB
Installation Count 123
Current Version 0.2.0
Last Updated 2015-01-05
Publish Date 2015-01-05
Rating 4.50/5 Total 2 Ratings
Developer Mohamad Ahmadi
Payment Type free
Extension Website https://github.com/mhahmadi/ColorThiefExtension
Help Page URL https://github.com/mhahmadi/ColorThiefExtension/issues
Supported Languages 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"
    ]
}