Website Color Palette Extractor - Apkvega

Website Color Palette Extractor - Apkvega

Looking to enhance your website's design with a unique and appealing color scheme? Try out the "Website Color Palette" Chrome…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Website Color Palette Extractor - Apkvega",
  "manifest_version": 3,
  "version": "2.0",
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_title": "Website Color Palette Extractor - Apkvega",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "chroma.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}