mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-07 05:56:41 +02:00
2b48394f63
Replace popup flyout with direct side panel open on icon click. Primary UI is now a chat interface that sends messages to Claude Code via file queue. Activity/Refs tabs moved behind a debug toggle in the footer. Command bar with history, auto-poll for responses, amber design system. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
32 lines
749 B
JSON
32 lines
749 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "gstack browse",
|
|
"version": "0.1.0",
|
|
"description": "Live activity feed and @ref overlays for gstack browse",
|
|
"permissions": ["sidePanel", "storage", "activeTab"],
|
|
"host_permissions": ["http://127.0.0.1:*/"],
|
|
"action": {
|
|
"default_icon": {
|
|
"16": "icons/icon-16.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
},
|
|
"side_panel": {
|
|
"default_path": "sidepanel.html"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"css": ["content.css"]
|
|
}],
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
}
|