PaletteAble

This extension grabs color palettes from active webpages.

Wat is PaletteAble?

PaletteAble is een Chrome-extensie ontwikkeld door jason.gresalfi, en de belangrijkste functie is "This extension grabs color palettes from active webpages.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie PaletteAble

Download PaletteAble-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam PaletteAble PaletteAble
ID ncggjbjnlddfacehhidbhnhcnjiengmk
Officiële URL https://chromewebstore.google.com/detail/paletteable/ncggjbjnlddfacehhidbhnhcnjiengmk
Beschrijving This extension grabs color palettes from active webpages.
Bestandsgrootte 16.82 KB
Aantal Installaties 232
Huidige Versie 1.0
Laatst Bijgewerkt 2017-02-22
Publicatiedatum 2017-02-21
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar jason.gresalfi
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}