Password Revealer

Password Revealer

Reveals the value of all password fields on the current page. Great for trying to remember what your password is.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Password Revealer",
  "description": "Reveals the value of all password fields on the current page. Great for trying to remember what your password is.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "unlock-icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab"
  ]
}