Examine source code of Warn Common Password

Inspect and view changes in Warn Common Password source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "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.11resigned1",
  "homepage_url": "https://github.com/gkrishnaks/",
  "icons": {
    "48": "icons/lockIcon.png"
  },
  "applications": {
    "gecko": {
      "id": "gokulakrishna.k.s@gmail.com",
      "strict_min_version": "57.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "notifications",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}