Color Palette Finder

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

Cos'è Color Palette Finder?

Color Palette Finder è un'estensione di Chrome sviluppata da jamesaburnell, e la sua funzione principale è "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Color Palette Finder

Scarica i file di estensione Color Palette Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Color Palette Finder Color Palette Finder
ID acijagaddpagpgcjdcoigjkmeiengplp
URL Ufficiale https://chromewebstore.google.com/detail/color-palette-finder/acijagaddpagpgcjdcoigjkmeiengplp
Descrizione Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.
Dimensione del File 28.27 KB
Conteggio Installazioni 898
Versione Corrente 0.0.2
Ultimo Aggiornamento 2016-01-08
Data di Pubblicazione 2016-01-08
Valutazione 2.60/5 Totale 5 Valutazioni
Sviluppatore jamesaburnell
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}