Color Vision Deficiency Assistant

Color Vision Deficiency Assistant

Make websites more accessible for people with colour vision deficiencies.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.3.0",
  "name": "Color Vision Deficiency Assistant",
  "short_name": "Color Vision Deficiency Assistant",
  "description": "Make websites more accessible for people with colour vision deficiencies.",
  "author": "Carlos Jeurissen",
  "homepage_url": "https://apps.jeurissen.co/color-vision-deficiency-assistant",
  "developer": {
    "name": "Carlos Jeurissen",
    "url": "https://apps.jeurissen.co/"
  },
  "content_security_policy": {
    "extension_pages": "default-src 'none'; child-src 'none'; connect-src 'none'; font-src 'none'; frame-src 'none'; img-src 'none'; manifest-src 'none'; media-src 'none'; object-src 'none'; worker-src 'none'; script-src 'self'; script-src-attr 'none'; script-src-elem 'self'; style-src 'none'; style-src-attr 'none'; style-src-elem 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; block-all-mixed-content; upgrade-insecure-requests"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "externally_connectable": {
    "ids": [],
    "accepts_tls_channel_id": false
  },
  "icons": {
    "16": "/images/icon-16.png",
    "24": "/images/icon-24.png",
    "32": "/images/icon-32.png",
    "48": "/images/icon-48.png",
    "64": "/images/icon-64.png",
    "72": "/images/icon-72.png",
    "96": "/images/icon-96.png",
    "128": "/images/icon-128.png"
  },
  "permissions": [
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "/background.js"
  },
  "options_ui": {
    "page": "/views/popup.html?options=1",
    "browser_style": false
  },
  "action": {
    "browser_style": false,
    "default_popup": "/views/popup.html",
    "default_icon": {
      "16": "/images/icon-16.png",
      "24": "/images/icon-24.png",
      "32": "/images/icon-32.png",
      "48": "/images/icon-48.png",
      "72": "/images/icon-72.png"
    },
    "theme_icons": [
      {
        "light": "/images/icon.svg",
        "dark": "/images/icon-dark.svg",
        "size": 16
      }
    ]
  },
  "commands": {
    "_execute_action": {}
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "/styles/content-script.css"
      ],
      "js": [
        "/scripts/content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ]
}