Preview Colors

Preview Colors

Preview any color using its color name or hexadecimal code!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Preview Colors",
  "short_name": "Preview Colors",
  "version": "1.0.1",
  "description": "Preview any color using its color name or hexadecimal code!",
  "author": "Carter",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "img/icons/icon256.png",
    "default_popup": "app/index.html"
  },
  "icons": {
    "16": "img/icons/icon16.png",
    "48": "img/icons/icon48.png",
    "64": "img/icons/icon64.png",
    "128": "img/icons/icon128.png",
    "256": "img/icons/icon256.png"
  }
}