Color Palette Finder

Color Palette Finder

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

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "js": [
        "palette-finder.js"
      ]
    }
  ]
}