Password Toggler - view typed passwords

Password Toggler - view typed passwords

Adds button to show/hide password in input elements

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 Toggler - view typed passwords",
  "short_name": "passTogg",
  "description": "Adds button to show/hide password in input elements",
  "version": "1.3.2",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}