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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}