Prevent Pwned Passwords

Prevent Pwned Passwords

Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Prevent Pwned Passwords",
  "short_name": "PreventPwned",
  "description": "Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach.",
  "version": "1.0.0",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "16": "ppp_16.png",
    "48": "ppp_48.png",
    "128": "ppp_128.png"
  },
  "permissions": [
    "notifications",
    "storage",
    "contextMenus",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "ppp_48.png",
    "default_title": "Prevent Pwned Passwords"
  },
  "background": {
    "scripts": [
      "background.js",
      "sha1.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "ppp.js"
      ],
      "run_at": "document_end"
    }
  ]
}