Strong Password Generator

Strong Password Generator

An easy password generator tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Strong Password Generator",
  "description": "An easy password generator tool",
  "version": "1.0.0",
  "browser_action": {
    "default_icon": "images/32.png",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.min.js",
        "js/strongpass.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "<all_urls>"
  ],
  "options_page": "html/popup.html"
}