PaletteAble

This extension grabs color palettes from active webpages.

Apa itu PaletteAble?

PaletteAble adalah ekstensi Chrome yang dikembangkan oleh jason.gresalfi, dan fitur utamanya adalah "This extension grabs color palettes from active webpages.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi PaletteAble

Unduh file ekstensi PaletteAble dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama PaletteAble PaletteAble
ID ncggjbjnlddfacehhidbhnhcnjiengmk
URL Resmi https://chromewebstore.google.com/detail/paletteable/ncggjbjnlddfacehhidbhnhcnjiengmk
Deskripsi This extension grabs color palettes from active webpages.
Ukuran File 16.82 KB
Jumlah Instalasi 232
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-02-22
Tanggal Publikasi 2017-02-21
Penilaian 3.67/5 Total 3 Penilaian
Pengembang jason.gresalfi
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}