Color Picker

Color Picker

Allows you to define the color of an element on the page in one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "functions.js",
      "bkg/bkg.js",
      "bkg/library/color-thief.umd.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "functions.js",
        "cnt/cnt.js"
      ],
      "css": [
        "cnt/cnt.css"
      ]
    }
  ],
  "default_locale": "en",
  "content_security_policy": "script-src 'self' 'sha256-WDhufSqZOEoWULzS4Nwz11MNyHzZClVYbQ2JSt1vfkw'; object-src 'self'",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "Allows you to define the color of an element on the page in one click",
  "version": "1.4",
  "browser_action": {
    "default_popup": "view/popup.html",
    "default_title": "ColorPicker"
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ]
}