{
"manifest_version": 3,
"name": "Live Testing Tool",
"description": "Capture bug reports: element notes with screenshots and recorded reproduction steps.",
"version": "0.1.0",
"permissions": ["activeTab", "scripting", "storage", "tabs"],
"host_permissions": ["<all_urls>"],
"action": {
"default_title": "Capture a bug report"
},
"web_accessible_resources": [
{
"resources": ["assets/*"],
"matches": ["<all_urls>"]
}
],
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": true
},
"commands": {
"start-picker": {
"suggested_key": { "default": "Alt+Shift+B" },
"description": "Pick an element to annotate"
},
"toggle-recorder": {
"suggested_key": { "default": "Alt+Shift+R" },
"description": "Start/stop recording reproduction steps"
}
}
}