Password Disasterisker

Password Disasterisker

Show password in plain text whenever the mouse is over the field

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "minimum_chrome_version": "89.0.0.0",
  "name": "Password Disasterisker",
  "short_name": "PWDISKER",
  "author": "Roberto E. Oneto",
  "description": "__MSG_extensionDescription__",
  "version": "0.0.0.8",
  "background": {
    "service_worker": "worker.js"
  },
  "action": {
    "default_icon": "img/icon.png",
    "default_title": "OFF"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/cursor.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "offline_enabled": true,
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+8"
      },
      "description": "Toggle functionality on the curent page",
      "global": false
    }
  },
  "permissions": [
    "activeTab",
    "scripting",
    "declarativeContent"
  ],
  "default_locale": "en",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}