ColorThief

Extracts a color palette from an image

ColorThief là gì?

ColorThief là một tiện ích mở rộng Chrome được phát triển bởi Mohamad Ahmadi, và tính năng chính của nó là "Extracts a color palette from an image".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ColorThief

Tải xuống các tệp mở rộng ColorThief dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ColorThief ColorThief
ID medkdmfcfbfkbekkgcafeojmkadhidln
URL Chính Thức https://chrome.google.com/webstore/detail/colorthief/medkdmfcfbfkbekkgcafeojmkadhidln
Mô tả Extracts a color palette from an image
Kích Thước Tệp 807 KB
Số Lần Cài Đặt 123
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2015-01-05
Ngày Phát Hành 2015-01-05
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Mohamad Ahmadi
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mhahmadi/ColorThiefExtension
URL Trang Trợ Giúp https://github.com/mhahmadi/ColorThiefExtension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}