Color Palette Finder

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

Was ist Color Palette Finder?

Color Palette Finder ist eine Chrome-Erweiterung, die von jamesaburnell entwickelt wurde, und ihr Hauptmerkmal ist "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.".

Erweiterungsscreenshots

screenshot

Color Palette Finder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Color Palette Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Color Palette Finder Color Palette Finder
ID acijagaddpagpgcjdcoigjkmeiengplp
Offizielle URL https://chromewebstore.google.com/detail/color-palette-finder/acijagaddpagpgcjdcoigjkmeiengplp
Beschreibung Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.
Dateigröße 28.27 KB
Installationsanzahl 898
Aktuelle Version 0.0.2
Letztes Update 2016-01-08
Veröffentlichungsdatum 2016-01-08
Bewertung 2.60/5 Insgesamt 5 Bewertungen
Entwickler jamesaburnell
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}