Password Generator

Generate a random secure password.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Password Generator",
  "version": "1.0",
  "description": "Generate a random secure password.",
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{090259e7-0a8a-4934-89a2-327556ea3346}"
    }
  }
}