KeyDepot

KeyDepot

KeyDepot manages all your passwords clearly and conveniently - now also directly in your browser! So you don't have to start your KeyDepot to copy a password, but have all your data directly at hand in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.309",
  "icons": {
    "16": "img/logo-icon.png",
    "32": "img/3232.png",
    "48": "img/4848.png",
    "64": "img/6464.png",
    "96": "img/9696.png"
  },
  "browser_action": {
    "default_title": "KeyDepot",
    "default_popup": "./index.html",
    "default_icon": "img/logged-out.png"
  },
  "content_scripts": [
    {
      "exclude_matches": [
        "*://*/*content"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "content/Utils.js",
        "content/HTMLPopupService.js",
        "content/autodetect.js",
        "content/autoLogin.js",
        "content/createNewEntry.js",
        "content/checkHostPopup.js",
        "content/masterPassword.js",
        "content/localization.js",
        "content/log.js",
        "content/passwordGenerator.js",
        "content/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/einstellungen.png",
    "img/einstellungen.svg",
    "img/_eye.png",
    "img/question.png",
    "img/_cross.png",
    "img/logo.svg",
    "img/passwortgenerator-key.svg",
    "img/passwordgenerator.png",
    "img/passwordgenerator-blue.png",
    "img/cope-password-light.png",
    "img/editpen-light.png",
    "img/edit-pen.svg",
    "img/cross-light.png",
    "hostsPopup.html",
    "fonts/icomoon.ttf",
    "newEntryPopup.html",
    "updateEntryPopup.html",
    "masterPassword.html",
    "passwordGenerator.html",
    "html-insertions/*",
    "html-insertions/loginPopup.html",
    "locators.json",
    "localization.json"
  ],
  "background": {
    "scripts": [
      "lib/kdbxweb/dist/kdbxweb.js",
      "lib/js-sha256/src/sha256.js",
      "background/Storage.js",
      "background/ServerSync.js",
      "background/ServerAPI.js",
      "background/ExtensionHooks.js",
      "background/KeepassAPI.js",
      "background/PasswordStrength.js",
      "background/AuthService.js",
      "background/TimeoutLogout.js",
      "background/PasswordGenerator.js",
      "background/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "idle",
    "storage",
    "activeTab",
    "clipboardWrite",
    "clipboardRead",
    "webNavigation",
    "https://keydepot.abelssoft.de/api/v1/safes/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{f6c5e2c4-3c48-4391-8d8b-3da8003104c6}"
    }
  }
}