ColorThief

Extracts a color palette from an image

ColorThiefคืออะไร?

ColorThief เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mohamad Ahmadi และคุณลักษณะหลักของมันคือ "Extracts a color palette from an image"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ColorThief

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}