NordPass® (desktop app version)

NordPass® (desktop app version)

The NordPass password manager offers an easy way to safely store and manage all your passwords in an encrypted vault. Autofill forms effortlessly and log in to your favorite websites instantly. All key features to simplify your life.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "NordPass (desktop app version)",
  "short_name": "NordPass",
  "description": "NordPass is your freedom from password stress. Generate and securely store strong passwords and autofill them with a single click.",
  "icons": {
    "16": "assets/manifestIcons/icon-16.png",
    "32": "assets/manifestIcons/icon-32.png",
    "48": "assets/manifestIcons/icon-48.png",
    "96": "assets/manifestIcons/icon-96.png",
    "128": "assets/manifestIcons/icon-128.png"
  },
  "browser_action": {
    "default_icon": "assets/manifestIcons/icon-48.png",
    "default_popup": "index.html",
    "default_title": "NordPass Password Manager"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js",
        "classifier.js"
      ],
      "exclude_matches": [
        "*://nobodyone.dev/*",
        "*://nordaccount.com/*",
        "*://app.stag.global.nordpass.com/*",
        "*://app.nordpass.com/*",
        "*://panel.nordpass.com/*",
        "*://nordpass.com/secure-password/",
        "*://www.pscu.ie/login.asp",
        "*://mail.google.com/mail/*",
        "*://nordbusinessaccount.com/*",
        "*://*.numiscorp.com/*",
        "*://*.springcm.com/atlas*",
        "*://tefi.lightning.force.com/lightning*",
        "*://mantel.com/backoffice",
        "*://pm.officeally.com/*",
        "*://docs.google.com/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "redirectContent.js"
      ],
      "matches": [
        "https://nordpass.com/app/"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "assets/*.svg",
    "assets/*.ttf",
    "iconFrame.html",
    "biometrics.html",
    "passkeys.js",
    "assets/content.css",
    "assets/manifestIcons/icon.svg"
  ],
  "permissions": [
    "storage",
    "tabs",
    "privacy",
    "contextMenus",
    "https://api-toggle.nordpass.com/*",
    "https://api-toggle.stag.eu.nordpass.com/*",
    "https://lastpass.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "version": "5.15.28"
}