DG.Color

DG.Color

Adds a colorblind friendly color-picker to Google Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DG.Color",
  "description": "Adds a colorblind friendly color-picker to Google Chrome",
  "version": "1.1",
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_title": "DG.Color",
    "default_icon": "images/icon-32.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "inject.css"
      ],
      "js": [
        "inject.js"
      ],
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    "fonts/*.ttf"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 2
}