Kaspersky Password Manager

Kaspersky Password Manager

Securely autofills your logins and passwords, bank card details, and addresses on websites you visit.

Additional files are visible only to premium users

manifest.json


{
  "version": "24.0.128.1",
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "author": "__MSG_extension_author__",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "background": {
    "service_worker": "./index.js"
  },
  "action": {
    "default_icon": {
      "16": "./images/logo/gray/16x16.png",
      "32": "./images/logo/gray/32x32.png",
      "48": "./images/logo/gray/48x48.png",
      "64": "./images/logo/gray/64x64.png",
      "96": "./images/logo/gray/96x96.png",
      "128": "./images/logo/gray/128x128.png",
      "256": "./images/logo/gray/256x256.png"
    },
    "default_popup": "popover/index.html",
    "default_title": "__MSG_toolbar_button_hint__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "./content_script/index.js"
      ],
      "css": [
        "./content_script/index.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "permissions": [
    "nativeMessaging",
    "scripting",
    "storage",
    "webNavigation",
    "tabs"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "*.png",
        "*.svg",
        "legal_notices.txt",
        "menuframe/index.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "standalone/hint/index.html",
        "standalone/password-generator/index.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'self'; img-src 'self' data:"
  },
  "minimum_chrome_version": "106",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}