Add some icons and set the options page in the extension manifest.
[skeletonkey.git] / manifest.json
index 2b860730343bd223c0c1b8fc9e6c658aafccd38d..c134d2e41a6b279688d2d7cb9a6f1457e18adf0e 100644 (file)
@@ -6,8 +6,17 @@
 
   "description": "A secure password generator that uses repeated hashing of your master password and some salt.",
 
+  "icons": {
+    "16": "icon19.png",
+    "48": "icon48.png",
+    "128": "icon128.png"
+  },
+
   "browser_action": {
     "default_title": "Skeleton Key",
-    "default_popup": "core.html"
-  }
+    "default_popup": "core.html",
+    "default_icon": "icon19.png"
+  },
+
+  "options_page": "options.html"
 }