From 0340a7f8b75d1919c6c1269d12281cca3bdf92af Mon Sep 17 00:00:00 2001 From: schmop Date: Thu, 23 Apr 2026 01:33:13 +0200 Subject: [PATCH] feat: padlock toolbar icon with spiral keyhole --- icons/passchmop.svg | 30 ++++++++++++++++++++++++++++++ manifest.json | 12 +++++++++++- 2 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 icons/passchmop.svg diff --git a/icons/passchmop.svg b/icons/passchmop.svg new file mode 100644 index 0000000..402e13b --- /dev/null +++ b/icons/passchmop.svg @@ -0,0 +1,30 @@ + + + Passchmop + + + + + + + + + + diff --git a/manifest.json b/manifest.json index 65d63b3..e0e69e5 100644 --- a/manifest.json +++ b/manifest.json @@ -3,6 +3,11 @@ "name": "Passchmop", "version": "0.1.0", "description": "Git-backed, client-side-encrypted password manager.", + "icons": { + "48": "icons/passchmop.svg", + "96": "icons/passchmop.svg", + "128": "icons/passchmop.svg" + }, "background": { "scripts": ["build/background.js"] }, @@ -10,7 +15,12 @@ "host_permissions": ["https://*/*"], "action": { "default_title": "Passchmop", - "default_popup": "src/popup/popup.html" + "default_popup": "src/popup/popup.html", + "default_icon": { + "16": "icons/passchmop.svg", + "32": "icons/passchmop.svg", + "48": "icons/passchmop.svg" + } }, "options_ui": { "page": "src/options/options.html",