fix(extension): default to high-risk mode by disabling page bridge

This commit is contained in:
leeguooooo
2026-03-04 11:46:44 +09:00
parent ae22bda46c
commit 2d0d18f0d9
6 changed files with 2981 additions and 148 deletions
+9
View File
@@ -3,6 +3,9 @@
"name": "agent-browser-stealth",
"version": "0.2.0",
"description": "Session-aware tab grouping and coordination for CDP-driven agent-browser workflows.",
"icons": {
"128": "icons/icon.svg"
},
"permissions": ["tabs", "tabGroups", "downloads", "storage", "sidePanel", "alarms"],
"host_permissions": ["<all_urls>"],
"background": {
@@ -21,5 +24,11 @@
"run_at": "document_start",
"match_about_blank": true
}
],
"web_accessible_resources": [
{
"resources": ["page-bridge.js"],
"matches": ["<all_urls>"]
}
]
}