Color Palette Finder

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

Wat is Color Palette Finder?

Color Palette Finder is een Chrome-extensie ontwikkeld door jamesaburnell, en de belangrijkste functie is "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Color Palette Finder

Download Color Palette Finder-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

                        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.                    

Basisinformatie over de Extensie

Naam Color Palette Finder Color Palette Finder
ID acijagaddpagpgcjdcoigjkmeiengplp
Officiële URL https://chromewebstore.google.com/detail/color-palette-finder/acijagaddpagpgcjdcoigjkmeiengplp
Beschrijving Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.
Bestandsgrootte 28.27 KB
Aantal Installaties 898
Huidige Versie 0.0.2
Laatst Bijgewerkt 2016-01-08
Publicatiedatum 2016-01-08
Beoordeling 2.60/5 Totaal 5 Beoordelingen
Ontwikkelaar jamesaburnell
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}