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"
    ]
}