feat: add CDP tab-group plugin handshake with silent fallback

This commit is contained in:
leeguooooo
2026-03-03 12:17:14 +09:00
parent d04cf59238
commit 2a766cfe48
19 changed files with 1079 additions and 249 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"manifest_version": 3,
"name": "Agent Browser CDP Tab Grouper",
"version": "0.1.0",
"description": "Groups tabs by Agent Browser session when requested from CDP-driven pages.",
"permissions": ["tabs", "tabGroups"],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"],
"run_at": "document_start",
"match_about_blank": true
}
]
}