Accessibility checker

Accessibility checker

Find out your website's accessibility issues before your customers do.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "short_name": "Helperbird",
  "version": "1.0.5",
  "homepage_url": "https://www.helperbird.com/products/accessibility-checker",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "images/logo/16.png",
    "32": "images/logo/32.png",
    "48": "images/logo/48.png",
    "128": "images/logo/128.png"
  },
  "browser_action": {
    "default_icon": "images/logo/128.png",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "all_frames": false,
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "activeTab",
    "identity",
    "storage",
    "tabs",
    "identity.email",
    "<all_urls>"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://cdn.jsdelivr.net; object-src 'self'",
  "web_accessible_resources": [],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}