mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-29 19:15:39 +00:00
Co-authored-by: Sun Tao <2605127667@qq.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
46 lines
963 B
JSON
46 lines
963 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "ADGM Co-work Agent",
|
|
"version": "1.0",
|
|
"description": "AI-powered browser co-work agent for page automation",
|
|
"permissions": [
|
|
"activeTab",
|
|
"tabs",
|
|
"debugger",
|
|
"scripting",
|
|
"sidePanel",
|
|
"webNavigation",
|
|
"storage"
|
|
],
|
|
"host_permissions": ["<all_urls>"],
|
|
"side_panel": {
|
|
"default_path": "sidepanel.html"
|
|
},
|
|
"action": {
|
|
"default_title": "Open ADGM Co-work Agent"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": [
|
|
"overlay/store.js",
|
|
"overlay/events.js",
|
|
"overlay/motion.js",
|
|
"overlay/aurora.js",
|
|
"overlay/cursor.js",
|
|
"overlay/summary.js",
|
|
"overlay/highlight.js",
|
|
"content.js"
|
|
],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"icons": {
|
|
"16": "adgm-logo.png",
|
|
"48": "icon-48.png",
|
|
"128": "icon.png"
|
|
}
|
|
}
|