From ce290860b4b3c1e4da5a635350721db2a56efb13 Mon Sep 17 00:00:00 2001 From: nzambello Date: Sun, 8 Mar 2020 13:14:43 +0100 Subject: [PATCH] correct manifest and artifacts dir --- .gitignore | 2 +- public/manifest.json | 5 +++++ webext.config.js | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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 }