Skip to content

Commit e18fa88

Browse files
committed
add: add extension icons to manifest and adjust SidePanelShell width
1 parent a21e2c5 commit e18fa88

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

assets/icon.png

-561 KB
Loading

public/icon.png

21.5 KB
Loading

public/manifest.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
"name": "EasyChat",
44
"description": "Compare multiple AI assistants in one Chrome side panel.",
55
"version": "1.0.0",
6+
"icons": {
7+
"16": "icon.png",
8+
"32": "icon.png",
9+
"48": "icon.png",
10+
"128": "icon.png"
11+
},
612
"permissions": [
713
"sidePanel",
814
"storage",
@@ -35,7 +41,13 @@
3541
"type": "module"
3642
},
3743
"action": {
38-
"default_title": "Open EasyChat"
44+
"default_title": "Open EasyChat",
45+
"default_icon": {
46+
"16": "icon.png",
47+
"32": "icon.png",
48+
"48": "icon.png",
49+
"128": "icon.png"
50+
}
3951
},
4052
"side_panel": {
4153
"default_path": "index.html"

src/components/app/SidePanelShell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export function SidePanelShell() {
8181
/>
8282
) : (
8383
<>
84-
<aside className="flex w-14 shrink-0 flex-col overflow-x-hidden border-r border-slate-200 bg-slate-50/80 py-4">
84+
<aside className="flex w-[57px] shrink-0 flex-col overflow-x-hidden border-r border-slate-200 bg-slate-50/80 py-4">
8585
<div className="flex min-h-0 flex-1 flex-col px-2">
8686
<div className="flex flex-col items-center gap-2">
8787
<CollapsedSidebarItem

0 commit comments

Comments
 (0)