Password Generator (With DinoPass)

Password Generator (With DinoPass)

This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Password Generator (With DinoPass)",
  "description": "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.",
  "version": "1.5.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "dpass.html"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}