Color Contrast Analyzer

Color Contrast Analyzer

Analyze a web page or portion of a web page for conformance with WCAG 2.0 Color Contrast requirements.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "hotkey_storage.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/icon_19.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_default_title__"
  },
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "page.js",
        "shortcut.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "isLoad.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "images/icon_16.png",
    "19": "images/icon_19.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "storage"
  ],
  "version": "1.1.2",
  "short_name": "CC Analyzer",
  "web_accessible_resources": [
    "page_context.js",
    "style.css"
  ]
}