Color Finder

Color Finder

Install color finder Chrome extension & detect RGB & HEX color codes with ease. Best Color Identifier for Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Color Finder",
  "version": "2.0.1",
  "description": "Install color finder Chrome extension & detect RGB & HEX color codes with ease. Best Color Identifier for Chrome.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "react-app-holder.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Click Me",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "./assets/Icon_16.png",
      "32": "./assets/Icon_32.png",
      "48": "./assets/Icon_48.png",
      "64": "./assets/Icon_64.png",
      "128": "./assets/Icon_128.png",
      "2000": "./assets/Icon_2000.png"
    }
  },
  "icons": {
    "16": "./assets/Icon_16.png",
    "32": "./assets/Icon_32.png",
    "48": "./assets/Icon_48.png",
    "64": "./assets/Icon_64.png",
    "128": "./assets/Icon_128.png",
    "2000": "./assets/Icon_2000.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "background"
  ],
  "manifest_version": 3
}