diff --git a/icons/icon-128.png b/icons/icon-128.png new file mode 100644 index 0000000..f742cdf --- /dev/null +++ b/icons/icon-128.png Binary files differ diff --git a/icons/icon-16.png b/icons/icon-16.png new file mode 100644 index 0000000..2cf09f7 --- /dev/null +++ b/icons/icon-16.png Binary files differ diff --git a/icons/icon-48.png b/icons/icon-48.png new file mode 100644 index 0000000..faf23ab --- /dev/null +++ b/icons/icon-48.png Binary files differ diff --git a/icons/icon.svg b/icons/icon.svg new file mode 100644 index 0000000..29d9888 --- /dev/null +++ b/icons/icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/manifest.json b/manifest.json index af67e75..62f8737 100644 --- a/manifest.json +++ b/manifest.json @@ -3,13 +3,23 @@ "name": "Fixtape", "description": "Mark UI elements, collect fixes, copy them as one structured prompt for an AI agent", "version": "0.1.0", + "icons": { + "16": "icons/icon-16.png", + "48": "icons/icon-48.png", + "128": "icons/icon-128.png" + }, "permissions": ["storage", "activeTab"], "background": { "service_worker": "src/background.js" }, "action": { "default_popup": "src/popup.html", - "default_title": "Fixtape" + "default_title": "Fixtape", + "default_icon": { + "16": "icons/icon-16.png", + "48": "icons/icon-48.png", + "128": "icons/icon-128.png" + } }, "content_scripts": [ {