ColorThief

Extracts a color palette from an image

ColorThief란 무엇입니까?

ColorThief은(는) Mohamad Ahmadi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extracts a color palette from an image"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ColorThief 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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