{
    "manifest_version": 3,
    "name": "ShowRunner DOM Capture",
    "version": "0.1.0",
    "description": "Capture metadata-only DOM workflow events and forward to ShowRunner while recording is active.",
    "permissions": ["tabs"],
    "host_permissions": ["http://127.0.0.1:8765/*"],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": ["<all_urls>"],
            "js": ["content.js"],
            "run_at": "document_idle"
        }
    ]
}
