Show Password - Safe and Secure

Show Password - Safe and Secure

Show the password you are entering!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Show Password - Safe and Secure",
  "version": "1.0.0",
  "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"
    }
  ],
  "action": {
    "default_icon": {
      "128": "logo.png"
    },
    "default_title": "__MSG_extension_description__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "64": "logo.png",
    "128": "logo.png"
  },
  "permissions": [
    "storage"
  ]
}