{ "manifest_version": 3, "name": "Actions DAP Debugger", "version": "0.1.0", "description": "Debug GitHub Actions workflows with DAP - interactive debugging directly in the browser", "permissions": ["activeTab", "storage"], "host_permissions": ["https://github.com/*"], "background": { "service_worker": "background/background.js" }, "content_scripts": [ { "matches": ["https://github.com/*/*/actions/runs/*/job/*"], "js": ["lib/dap-protocol.js", "content/content.js"], "css": ["content/content.css"], "run_at": "document_idle" } ], "action": { "default_popup": "popup/popup.html", "default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }