Vision

Vision

Vision is software allowing people with different kinds of color blindness (colour vision deficiency) to see more colors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_VISION_APPNAME__",
  "version": "0.0.8",
  "description": "__MSG_VISION_APPDESC__",
  "manifest_version": 2,
  "icons": {
    "16": "res/vision-16.png",
    "48": "res/vision-48.png",
    "128": "res/vision-128.png"
  },
  "permissions": [
    "<all_urls>",
    "tabs"
  ],
  "background": {
    "scripts": [
      "src/common.js",
      "src/storage.js",
      "src/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "res/vision-19.png",
      "38": "res/vision-38.png"
    },
    "default_title": "__MSG_VISION_APPNAME__",
    "default_popup": "src/popup.html"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "res/cvd.css"
      ],
      "js": [
        "src/common.js",
        "src/cvd.js"
      ]
    }
  ]
}