Dashlane — Password Manager

Dashlane — Password Manager

Dashlane makes the internet easier. Save all your passwords, fill forms fast, and keep your data accessible and safe.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "16": "icons/action/icon_loading.png",
      "32": "icons/action/[email protected]"
    },
    "default_popup": "popup/index.html",
    "default_title": "Dashlane"
  },
  "background": {
    "service_worker": "background-service-worker.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L"
      }
    }
  },
  "default_locale": "en",
  "description": "__MSG_ExtensionShortDescription__",
  "icons": {
    "16": "icons/icon-dashlane-16px.png",
    "48": "icons/icon-dashlane-48px.png",
    "128": "icons/icon-dashlane-128px.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "114",
  "name": "__MSG_ExtensionName__",
  "storage": {
    "managed_schema": "managed-storage-schema.json"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "contextMenus",
    "cookies",
    "idle",
    "privacy",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webRequest",
    "scripting",
    "declarativeNetRequest",
    "webRequestAuthProvider",
    "alarms"
  ],
  "version": "6.2416.3",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://platform.twitter.com/widgets/*",
        "*://www.facebook.com/plugins/*",
        "*://plusone.google.com/_/+1/*"
      ],
      "exclude_globs": [
        "*://www.google.*/*sourceid=chrome-instant*",
        "*://www.google.*/blank.html*"
      ],
      "js": [
        "content/contentScripts/kwift.CHROME.js",
        "content/injected/vendors.js"
      ],
      "css": [
        "content/webui/webui-frame.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content/contentScripts/dashlane-saml-intercept-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": false
    },
    {
      "matches": [
        "https://*/*"
      ],
      "exclude_matches": [
        "*://platform.twitter.com/widgets/*",
        "*://www.facebook.com/plugins/*",
        "*://plusone.google.com/_/+1/*"
      ],
      "exclude_globs": [
        "*://www.google.*/*sourceid=chrome-instant*",
        "*://www.google.*/blank.html*"
      ],
      "js": [
        "content/pageScripts/dashlane-webauthn-page-script.js",
        "content/pageScripts/dashlane-tiresias-page-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "world": "MAIN"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "loading.html",
        "content/injected/logo-autofill-known.svg",
        "content/injected/logo-autofill-unknown.svg",
        "content/injected/loader.png",
        "content/webui/index.html",
        "content/injected/vendors.js",
        "content/pageScripts/dashlane-webauthn-page-script.js",
        "content/pageScripts/dashlane-tiresias-page-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}