Color Palette Finder

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

What is Color Palette Finder?

Color Palette Finder is a Chrome extension developed by jamesaburnell, and its main feature is "Find the most commonly used colors on any site! Creates a palette of HEX and RGBA values.".

Extension Screenshots

screenshot

Download Color Palette Finder Extension CRX File

Download Color Palette Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Color Palette Finder Color Palette Finder
ID acijagaddpagpgcjdcoigjkmeiengplp
Official URL 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.
File Size 28.27 KB
Installation Count 898
Current Version 0.0.2
Last Updated 2016-01-08
Publish Date 2016-01-08
Rating 2.60/5 Total 5 Ratings
Developer jamesaburnell
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}