Uno Password Generator

Uno Password Generator

Simple password generator extension that helps you generate secure passwords

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Uno Password Generator",
  "version": "0.1",
  "description": "Simple password generator extension that helps you generate secure passwords",
  "permissions": [
    "identity",
    "activeTab"
  ],
  "oauth2": {
    "client_id": "345064011110-rrtpqihrvc0dvbrt3eqg0lh6ssgsj339.apps.googleusercontent.com",
    "scopes": [
      "profile email"
    ]
  },
  "host_permissions": [],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://generator.uno.app/"
      ],
      "js": [
        "js/content.js",
        "popup/bootstrap.bundle.min.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/popup.html",
    "default_title": "Uno Password Generator",
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png",
      "48": "images/48.png",
      "128": "images/128.png",
      "256": "images/256.png",
      "512": "images/512.png"
    }
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png",
    "256": "images/256.png",
    "512": "images/512.png"
  },
  "manifest_version": 3
}