diff --git a/.gitignore b/.gitignore index a724ea1..4940161 100644 --- a/.gitignore +++ b/.gitignore @@ -22,4 +22,4 @@ npm-debug.log* yarn-debug.log* yarn-error.log* -artifacts +build/artifacts diff --git a/public/manifest.json b/public/manifest.json index 5ecf1c2..31d8a0c 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -9,6 +9,11 @@ }, "browser_action": { "default_icon": "logo192.png", + "theme_icons": [{ + "light": "logo192.png", + "dark": "logo192.png", + "size": 192 + }], "default_title": "TimeConvert", "default_popup": "index.html", "browser_style": true diff --git a/webext.config.js b/webext.config.js index 30682e8..95227cd 100644 --- a/webext.config.js +++ b/webext.config.js @@ -1,6 +1,6 @@ module.exports = { sourceDir: "./build", - artifactsDir: "./artifacts", + artifactsDir: "./build/artifacts", build: { overwriteDest: true }