Color Palette Finder

Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.

ما هو Color Palette Finder؟

Color Palette Finder هو إضافة Chrome تم تطويرها بواسطة jamesaburnell، والميزة الرئيسية لها هي "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.".

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

screenshot

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

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

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

                        Find the top 6 most commonly used colors on any site! Creates a palette of HEX and RGB values. Clicking on one of the colors will copy the HEX value to your clipboard.                    

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

الاسم Color Palette Finder Color Palette Finder
ID acijagaddpagpgcjdcoigjkmeiengplp
عنوان URL الرسمي https://chromewebstore.google.com/detail/color-palette-finder/acijagaddpagpgcjdcoigjkmeiengplp
الوصف Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.
حجم الملف 28.27 KB
عدد التثبيتات 898
النسخة الحالية 0.0.2
آخر تحديث 2016-01-08
تاريخ النشر 2016-01-08
تقييم 2.60/5 مجموع تقييمات 5
المطور jamesaburnell
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Palette Finder",
    "description": "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "cpflogo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "palette-finder.js"
            ]
        }
    ]
}