diff --git a/src/assets/icons/Gitako-128x128.png b/src/assets/icons/Gitako-128x128.png new file mode 100644 index 0000000..4bc13ff Binary files /dev/null and b/src/assets/icons/Gitako-128x128.png differ diff --git a/src/manifest.json b/src/manifest.json index b634787..f91ab25 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -3,6 +3,9 @@ "name": "Gitako", "version": "0.1.0", "author": "EnixCoda", + "icons": { + "128": "icons/Gitako-128x128.png" + }, "description": "yet another GitHub extension.", "homepage_url": "https://github.com/EnixCoda/Gitako", "permissions": ["tabs", "storage", "*://github.com/*"], diff --git a/webpack.config.js b/webpack.config.js index 1ca3758..d012cdd 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -11,6 +11,10 @@ const plugins = [ from: './src/manifest.json', to: 'manifest.json', }, + { + from: './src/assets/icons/*', + to: 'icons/[name].[ext]', + }, ]), new webpack.SourceMapDevToolPlugin({}), ]