Password Peek

Password Peek

Unmask the contents of a password field with a simple click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Password Peek",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Unmask the contents of a password field with a simple click!",
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "web_accessible_resources": [
    "img/peek_normal.png",
    "img/peek_active.png",
    "img/lock_normal.png",
    "img/lock_active.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-1.7.2-tweaked.js",
        "password-peek.js"
      ],
      "all_frames": true
    }
  ]
}