Windows Accounts

Windows Accounts

Sign in to supported websites with accounts on Windows 10 and later versions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Windows Accounts",
  "description": "Sign in to supported websites with accounts on Windows 10 and later versions",
  "version": "1.0.7",
  "action": {
    "default_icon": "windows16.png",
    "default_title": "Sign in to websites with accounts on Windows"
  },
  "icons": {
    "16": "windows16.png",
    "48": "windows48.png",
    "128": "windows128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "default-src": "none",
    "script-src": "self",
    "base-uri": "none",
    "form-action": "none"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "nativeMessaging"
  ]
}