Stellar Color Picker

Perfectly designed color picker tool for browser tabs
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_title": "__MSG_name__",
    "default_icon": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "src/jquery.js",
        "averageColor.js"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "commands": {
    "activate": {
      "description": "__MSG_select_color__",
      "suggested_key": {
        "default": "Alt+P"
      }
    }
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "permissions": [
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "version": "2.36",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com https://*.googleapis.com blob:; object-src 'self'",
  "web_accessible_resources": [
    "inc/jquery-2.1.0.min.js",
    "inc/jquery.scrollstop.js",
    "colorPicker.js",
    "inject/anchor-cursor-default.css",
    "inject/colorPicker.css",
    "inject/anchor-cursor-crosshair.css"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}