Color Picker

Color Picker

Allows you to define the color of an element on the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "256": "icon.png"
  },
  "background": {
    "scripts": [
      "/static/BackgroundScripts/bgmain.js",
      "/static/BackgroundScripts/color-thief.umd.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/static/ContentScripts/colorpicker.js"
      ],
      "css": [
        "/static/ContentScripts/styles/colorpicker.css"
      ]
    }
  ],
  "default_locale": "en",
  "content_security_policy": "script-src 'self' 'sha256-WDhufSqZOEoWULzS4Nwz11MNyHzZClVYbQ2JSt1vfkw'; object-src 'self'",
  "manifest_version": 2,
  "name": "Color Picker",
  "description": "Allows you to define the color of an element on the page",
  "version": "2.5",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "ColorPicker"
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ]
}