Create a Makefile for the extension
[skeletonkey.git] / manifest.json
1 {
2 "manifest_version": 2,
3
4 "name": "Skeleton Key",
5 "version": "1",
6
7 "description": "A secure password generator that uses repeated hashing of your master password and some salt.",
8
9 "icons": {
10 "16": "icon19.png",
11 "48": "icon48.png",
12 "128": "icon128.png"
13 },
14
15 "browser_action": {
16 "default_title": "Skeleton Key",
17 "default_popup": "core.html",
18 "default_icon": "icon19.png"
19 }
20 }