Password Viewer

Password Viewer

Reveal and Copy the password hidden in the form of asterisks signs on any web page with a single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Password Viewer",
  "manifest_version": 3,
  "version": "1.3",
  "description": "Reveal and Copy the password hidden in the form of asterisks signs on any web page with a single click",
  "action": {
    "name": "Password Viewer",
    "icons": [
      "icon.png"
    ],
    "default_icon": {
      "19": "icon.png",
      "38": "icon.png"
    },
    "default_title": "Password Viewer"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "background.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "copy.svg",
        "hide.svg",
        "show.svg"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}