Warn Common Password

Warn Common Password

Displays warning notification if word entered in any password field is present in 500000 common passwords. Works entirely offline.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Displays warning notification if word entered in any password field is present in 500000 common passwords. Works entirely offline.",
  "manifest_version": 2,
  "name": "Warn Common Password",
  "version": "0.0.10",
  "homepage_url": "https://github.com/gkrishnaks/",
  "icons": {
    "48": "icons/lockIcon.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "notifications",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}