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