manifest setup with icons

This commit is contained in:
Kyle Spearrin 2016-08-30 23:47:38 -04:00
parent 23f43ce27e
commit 65efd95b66
10 changed files with 25 additions and 0 deletions

0
.gitignore vendored Normal file
View File

1
src/background.js Normal file
View File

@ -0,0 +1 @@


BIN
src/images/icon128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
src/images/icon16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 B

BIN
src/images/icon19.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 487 B

BIN
src/images/icon32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 749 B

BIN
src/images/icon38.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 920 B

BIN
src/images/icon48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
src/images/icon96.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

24
src/manifest.json Normal file
View File

@ -0,0 +1,24 @@
{
"manifest_version": 2,
"name": "bitwarden",
"version": "0.0.1",
"description": "Secure and free password manager for all of your devices.",
"homepage_url": "https://bitwarden.com",
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"96": "images/icon96.png",
"128": "images/icon128.png"
},
"background": {
"scripts": [ "background.js" ]
},
"browser_action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
},
"default_title": "bitwarden"
}
}