Instant Password Generator

Instant Password Generator

Instantly generate strong passwords and fill in password input fields with random password by double clicking the chosen field!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.1",
  "icons": {
    "16": "extension_ui/icon16.png",
    "64": "extension_ui/icon64.png",
    "128": "extension_ui/icon128.png"
  },
  "browser_action": {
    "default_icon": "extension_ui/icon16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "dist/background.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib_script/jquery-3.3.1.min.js",
        "dist/content.min.js"
      ]
    }
  ]
}