PasswordViewer - Password Revealer

PasswordViewer - Password Revealer

See what’s under the asterisks (saved passwords), a simple password revealer!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "PasswordViewer - Password Revealer",
  "description": "See what’s under the asterisks (saved passwords), a simple password revealer!",
  "version": "3.0.1",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_title": "PasswordViewer!",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  }
}