Glimpse: Toggle Password with Shortcut Keys

Glimpse: Toggle Password with Shortcut Keys

Show / hide password fields easily with shortcut keys or context menu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Glimpse: Toggle Password with Shortcut Keys",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Show / hide password fields easily with shortcut keys or context menu",
  "author": "Walter Teng",
  "homepage_url": "https://github.com/davzoku",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "commands": {
    "commandTogglePasswords": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "Show / Hide Passwords"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}