feat(manifest): add icon

This commit is contained in:
EnixCoda 2018-01-06 23:18:55 +08:00
parent 608345dc10
commit c395a9b195
3 changed files with 7 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View file

@ -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/*"],

View file

@ -11,6 +11,10 @@ const plugins = [
from: './src/manifest.json',
to: 'manifest.json',
},
{
from: './src/assets/icons/*',
to: 'icons/[name].[ext]',
},
]),
new webpack.SourceMapDevToolPlugin({}),
]