N-able Passportal

N-able Passportal

N-able Passportal™ has a new fully native browser extension for Google Chrome, Firefox, Edge, and all Chromium-based browsers that enable users to easily access and manage their My Vault, Company Vault, and Client Vault credentials securely.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "author": "Passportal",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "__MSG_browserActionTitle__",
    "default_popup": "pages/popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*",
        "*.svg",
        "fonts/webfonts/fa-regular-400.eot",
        "fonts/webfonts/fa-regular-400.woff2",
        "fonts/webfonts/fa-regular-400.woff",
        "fonts/webfonts/fa-regular-400.ttf",
        "fonts/webfonts/fa-regular-400.svg",
        "pages/frame.html",
        "pages/passwordFrame.html",
        "pages/passwordChange.html",
        "scripts/content.js",
        "images/extension-logo.png",
        "/images/globe.svg",
        "/images/key.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "privacy",
    "unlimitedStorage",
    "activeTab",
    "clipboardWrite",
    "alarms"
  ],
  "host_permissions": [
    "https://www.google-analytics.com/",
    "*://developer.mozilla.org/*"
  ],
  "version": "3.37.1"
}