{
  "manifest_version": 3,
  "name": "Accessibility Code Helper",
  "description": "Narrates debugging signals and code-structure cues for blind and low-vision developers.",
  "version": "1.0.0",
  "permissions": ["storage", "tts", "activeTab", "scripting"],
  "host_permissions": ["<all_urls>"],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["content-script.js"],
      "run_at": "document_idle"
    }
  ],
  "commands": {
    "narrate-focused-context": {
      "suggested_key": {
        "default": "Alt+Shift+N"
      },
      "description": "Narrate the currently focused code context"
    }
  },
  "action": {
    "default_title": "Accessibility Code Helper"
  }
}
