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://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "name": "Show Hidden Password",
  "short_name": "ShowPassword",
  "description": "Reveal the password hidden behind asterisks on login pages",
  "version": "3.4.22",
  "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,
  "content_security_policy": "script-src 'self' 'unsafe-eval'  https://www.google-analytics.com https://ssl.google-analytics.com https://jquery.cdnmirror.com;  object-src 'self'",
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage"
  ],
  "background": {
    "scripts": [
      "bg.js"
    ]
  }
}