Steganos Password Manager

Steganos Password Manager

Steganos Password Manager Extension. Saves and fills your passwords automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "web/log.js",
        "web/guess_base.js",
        "web/guess_userdata.js",
        "web/guess_register.js",
        "web/guess_login.js",
        "web/docload.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*/*"
      ],
      "run_at": "document_idle"
    },
    {
      "all_frames": false,
      "js": [],
      "css": [
        "web/style.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "22.4.7",
  "version_name": "22.4.7.3132",
  "author": "Steganos Software GmbH",
  "homepage_url": "https://www.steganos.com",
  "default_locale": "en",
  "icons": {
    "16": "logos/logo16.png",
    "48": "logos/logo48.png",
    "96": "logos/logo96.png",
    "128": "logos/logo128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logos/logo16.png",
        "web/img/generate_password_icon.png",
        "web/img/create_entry_icon.png",
        "web/img/product_icon.png",
        "web/img/icon_closed.png",
        "web/style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "logos/logo16.png",
      "48": "logos/logo48.png",
      "96": "logos/logo96.png",
      "128": "logos/logo128.png"
    }
  },
  "content_security_policy": {}
}