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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}