Files
chrome-use/extensions/tab-group-cdp/manifest.json
T

26 lines
667 B
JSON

{
"manifest_version": 3,
"name": "agent-browser-stealth",
"version": "0.2.0",
"description": "Session-aware tab grouping and coordination for CDP-driven agent-browser workflows.",
"permissions": ["tabs", "tabGroups", "downloads", "storage", "sidePanel"],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "service-worker.js"
},
"action": {
"default_title": "agent-browser-stealth"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"],
"run_at": "document_start",
"match_about_blank": true
}
]
}