Dropbox Passwords

Dropbox Passwords

Dropbox Passwords stores and syncs passwords across all your devices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "minimum_chrome_version": "99",
  "name": "Dropbox Passwords",
  "short_name": "Passwords",
  "author": "Dropbox Inc.",
  "description": "__MSG_summary_description__",
  "homepage_url": "https://www.dropbox.com/",
  "version": "3.26.0",
  "version_name": "3.26.0",
  "icons": {
    "16": "srcdist/shared/icons/passwords-icon-16.png",
    "48": "srcdist/shared/icons/passwords-icon-48.png",
    "128": "srcdist/shared/icons/passwords-icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "srcdist/background/background.js",
    "type": "module"
  },
  "permissions": [
    "nativeMessaging",
    "storage",
    "contextMenus",
    "tabs",
    "notifications",
    "alarms",
    "idle",
    "downloads"
  ],
  "host_permissions": [
    "https://thunder.dropbox.com/",
    "https://d.dropbox.com/"
  ],
  "incognito": "spanning",
  "action": {
    "default_icon": {
      "16": "srcdist/shared/icons/passwords-icon-16.png",
      "24": "srcdist/shared/icons/passwords-icon-24.png",
      "32": "srcdist/shared/icons/passwords-icon-32.png"
    },
    "default_title": "Dropbox Passwords"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "srcdist/content/content_script.js"
      ],
      "css": [
        "srcdist/content/content_styles.css"
      ]
    },
    {
      "matches": [
        "https://www.dropbox.com/passwords_extension/*"
      ],
      "js": [
        "srcdist/content/custom_routes_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "srcdist/assets/passwords-icon-48.png",
        "locked_dropdown.html",
        "save_notification.html",
        "save_prompt.html",
        "saved_accounts_dropdown.html",
        "suggested_password_dropdown.html",
        "upgrade_dropdown.html",
        "upgrade_prompt.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}