Show Hidden Password

Show Hidden Password

Reveal the password hidden behind asterisks on login pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Show Hidden Password",
  "short_name": "ShowPassword",
  "description": "Reveal the password hidden behind asterisks on login pages",
  "author": "Amit Agarwal",
  "homepage_url": "https://www.labnol.org/internet/reveal-hidden-password/25600/",
  "version": "1.2",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "labnol.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2
}