PaletteAble

This extension grabs color palettes from active webpages.

ما هو PaletteAble؟

PaletteAble هو إضافة Chrome تم تطويرها بواسطة jason.gresalfi، والميزة الرئيسية لها هي "This extension grabs color palettes from active webpages.".

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

screenshot

تحميل ملف CRX للإضافة PaletteAble

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

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

                        This is a simple extension that will pull all background colors off of an active Chrome tab and generate a pop-up with a pleasing color palette. Hover over the color swatches for the rgba values and click the cloud icon to download a CSS-esque palette export.

New features and improvements will be forthcoming and this extension will always be free!                    

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

الاسم PaletteAble PaletteAble
ID ncggjbjnlddfacehhidbhnhcnjiengmk
عنوان URL الرسمي https://chromewebstore.google.com/detail/paletteable/ncggjbjnlddfacehhidbhnhcnjiengmk
الوصف This extension grabs color palettes from active webpages.
حجم الملف 16.82 KB
عدد التثبيتات 232
النسخة الحالية 1.0
آخر تحديث 2017-02-22
تاريخ النشر 2017-02-21
تقييم 3.67/5 مجموع تقييمات 3
المطور jason.gresalfi
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PaletteAble",
    "description": "This extension grabs color palettes from active webpages.",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "download.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Get me some colors!",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}