ColorVeil

ColorVeil

Add your own customized color filter (veil) over any website or document to help with dyslexia, visual stress, eye strain, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ColorVeil",
  "description": "Add your own customized color filter (veil) over any website or document to help with dyslexia, visual stress, eye strain, and more.",
  "version": "1.0",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "action": {
    "default_title": "ColorVeil - Click to toggle"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html"
}