KeePassHelper Password Manager

KeePassHelper Password Manager

Helper extension to find and insert logins and passwords without copying them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "0.8.1",
  "name": "KeePassHelper Password Manager",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "clipboardWrite"
  ],
  "optional_permissions": [
    "nativeMessaging",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "/v2/chrome.action.js",
      "/v2/chrome.contextMenus.create.js",
      "/v2/chrome.permissions.request.js",
      "/v2/chrome.runtime.js",
      "/v2/chrome.scripting.js",
      "/v2/chrome.storage.session.js",
      "/v2/chrome.tabs.query.js",
      "/v2/chrome.windows.create.js",
      "/v2/chrome.windows.get.js",
      "/v2/chrome.windows.getCurrent.js",
      "worker.js"
    ]
  },
  "icons": {
    "16": "/data/icons/16.png",
    "32": "/data/icons/32.png",
    "48": "/data/icons/48.png",
    "64": "/data/icons/64.png",
    "128": "/data/icons/128.png",
    "256": "/data/icons/256.png",
    "512": "/data/icons/512.png"
  },
  "homepage_url": "https://webextension.org/listing/keepass-helper.html",
  "options_ui": {
    "page": "/data/options/index.html",
    "open_in_tab": true
  },
  "commands": {
    "open-embedded": {
      "description": "Open credentials in the embedded mode (useful for popup windows) (does not yet work in Firefox browser)"
    },
    "generate-password": {
      "description": "Generate a Random Password"
    },
    "save-form": {
      "description": "Save a new Login Form in KeePass"
    },
    "_execute_browser_action": {}
  },
  "web_accessible_resources": [
    "/data/cmd/index.html",
    "/data/save/index.html",
    "/data/safe/index.html"
  ],
  "browser_action": {
    "default_popup": "/data/cmd/index.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{69ef9498-0139-43e4-97b8-942982ac9158}"
    }
  }
}