Show Password info

Show Password info

Show password when mouse over password fields.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Show Password info",
  "version": "1.0.1",
  "manifest_version": 3,
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "showPassword.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon32.png",
    "32": "icon32.png",
    "64": "icon.png",
    "128": "icon.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}