Modern Password Manager

Modern Password Manager

Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Modern Password Manager",
  "version": "0.5.1",
  "permissions": [
    "activeTab",
    "*://*/*",
    "contextMenus",
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup/index.html",
    "default_icon": "assets/iconLoggedOut.png",
    "default_title": "Modern Password Manager"
  },
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "options/index.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "webaccessible/*",
    "assets/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}