Passwordstate

Passwordstate

Passwordstate for Edge is a form filler extension that obtains credentials from Passwordstate.

Additional files are visible only to premium users

manifest.json


{
  "name": "Passwordstate",
  "description": "Passwordstate for Edge is a form filler extension that obtains credentials from Passwordstate.",
  "short_name": "PasswordstateEdge",
  "version": "9.8.4.9",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon_16x16.png",
    "48": "images/icon_48x48.png",
    "128": "images/icon_128x128.png"
  },
  "commands": {
    "generate": {
      "suggested_key": {
        "default": "Alt+G",
        "mac": "Command+Shift+G"
      },
      "description": "Opens Generate Password screen in new tab"
    },
    "passwordstatewebsite": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Command+Shift+P"
      },
      "description": "Opens Passwordstate website in new tab"
    },
    "enableautofill": {
      "suggested_key": {
        "default": "Alt+T",
        "mac": "Command+Shift+T"
      },
      "description": "Toggles Auto-Fill"
    },
    "autofillform": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Command+Shift+A"
      },
      "description": "Auto-Fills form"
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "clipboardWrite",
    "idle"
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "preferences.html"
  },
  "web_accessible_resources": [
    "js/fido2/passwordless.min.js",
    "savepasskey.html",
    "js/savepasskey.min.js",
    "getpasskey.html",
    "js/getpasskey.min.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-3.5.1.min.js",
        "js/password_manager.min.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}