Reveal Passwords

Reveal Passwords

Toggle password fields to text fields so you can see what you've typed (or mistyped).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reveal Passwords",
  "description": "Toggle password fields to text fields so you can see what you've typed (or mistyped).",
  "version": "1.0.0",
  "short_name": "revealpasswords",
  "minimum_chrome_version": "1.0",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_title": "Reveal Passwords",
    "default_icon": {
      "19": "icons/inactive-19.png",
      "38": "icons/inactive-38.png",
      "64": "icons/inactive-64.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "icons": {
    "64": "icons/inactive-64.png",
    "128": "icons/inactive-128.png"
  }
}