PassMan Secure Login

PassMan Secure Login

This extension helps you to login easier to webtargets using our Business Password Manager tool, PassMan.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "4.2.1",
  "name": "__MSG_appName__",
  "minimum_chrome_version": "112",
  "permissions": [
    "storage",
    "tabs",
    "cookies",
    "contextMenus",
    "scripting"
  ],
  "incognito": "spanning",
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "browser_style": false
  },
  "action": {
    "browser_style": false,
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/passmano-16.png",
      "24": "images/passmano-24.png",
      "32": "images/passmano-32.png",
      "48": "images/passmano-48.png",
      "128": "images/passmano-128.png"
    },
    "default_title": "__MSG_appName__",
    "default_area": "navbar"
  },
  "devtools_page": "devtools.html",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": false,
      "js": [
        "node_modules/webextension-polyfill/dist/browser-polyfill.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "build.txt",
        "content.html",
        "images/*",
        "node_modules/webextension-polyfill/dist/browser-polyfill.js",
        "redirect.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "default_locale": "en",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "author": "MORESIMP Kft.",
  "homepage_url": "https://passman.co",
  "icons": {
    "16": "images/passmano-padded-16.png",
    "24": "images/passmano-padded-24.png",
    "32": "images/passmano-padded-32.png",
    "48": "images/passmano-padded-48.png",
    "128": "images/passmano-padded-128.png"
  },
  "version_name": "4.2.1",
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}