Colorgrab

Colorgrab

Grab colors from any website. Fast and reliable color picker tool

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_title": "__MSG_name__",
    "default_icon": "icon-128.png"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://ladnet.co; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "content.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>"
  ],
  "version": "1.8.6",
  "web_accessible_resources": [
    "content2.js",
    "content2.css"
  ]
}