Color Palette Finder

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

Qu'est-ce que Color Palette Finder ?

Color Palette Finder est une extension Chrome développée par jamesaburnell, et sa fonction principale est "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Color Palette Finder

Téléchargez les fichiers d'extension Color Palette Finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Color Palette Finder Color Palette Finder
ID acijagaddpagpgcjdcoigjkmeiengplp
URL Officiel https://chromewebstore.google.com/detail/color-palette-finder/acijagaddpagpgcjdcoigjkmeiengplp
Description Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.
Taille du Fichier 28.27 KB
Nombre d'Installations 898
Version Actuelle 0.0.2
Dernière Mise à Jour 2016-01-08
Date de Publication 2016-01-08
Évaluation 2.60/5 Total 5 Évaluations
Développeur jamesaburnell
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}