Color Thief

This extension creates color palette from an image.

ما هو Color Thief؟

Color Thief هو إضافة Chrome تم تطويرها بواسطة ASJuferov، والميزة الرئيسية لها هي "This extension creates color palette from an image.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Color Thief

قم بتنزيل ملفات الامتداد Color Thief بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        How To Use:
 - Open image in new tab;
 - Right Click on image and choose "Get Color Palette";

Created with Color Thief Js: https://github.com/lokesh/color-thief                    

معلومات أساسية عن التمديد

الاسم Color Thief Color Thief
ID lejcjeaphlmigloehalkphjhpdaopddj
عنوان URL الرسمي https://chromewebstore.google.com/detail/color-thief/lejcjeaphlmigloehalkphjhpdaopddj
الوصف This extension creates color palette from an image.
حجم الملف 286 KB
عدد التثبيتات 340
النسخة الحالية 0.3.1
آخر تحديث 2014-03-15
تاريخ النشر 2014-03-15
تقييم 4.67/5 مجموع تقييمات 3
المطور ASJuferov
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Thief",
    "description": "This extension creates color palette from an image.",
    "version": "0.3.1",
    "author": "Andrey Yuferov",
    "permissions": [
        "",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "color_thief.js",
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "dialog.html",
        "font-awesome\/*"
    ],
    "icons": {
        "16": "icons\/icon_016.png",
        "48": "icons\/icon_048.png",
        "128": "icons\/icon_128.png"
    }
}