iCloud Passwords

iCloud Passwords

iCloud Passwords lets you fill passwords from iCloud Keychain when signing in to websites using Edge.

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "version": "2.2.9",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "images/PasswordsToolbar_icon16.png",
      "32": "images/PasswordsToolbar_icon32.png"
    },
    "default_popup": "page_popup.html"
  },
  "icons": {
    "16": "images/PasswordsExtensionIcon_16.png",
    "32": "images/PasswordsExtensionIcon_32.png",
    "128": "images/PasswordsExtensionIcon_128.png"
  },
  "permissions": [
    "privacy",
    "declarativeContent",
    "nativeMessaging",
    "webNavigation",
    "storage",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [
    {
      "resources": [
        "completion_list.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}