Windows 10 Accounts Port

Windows 10 Accounts Port

Sign in to supported websites with accounts on Windows 10. Ported from the Chrome's Windows 10 Accounts extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Windows 10 Accounts",
  "description": "Sign in to supported websites with accounts on Windows 10",
  "version": "1.0.2.2resigned1",
  "browser_action": {
    "default_icon": "windows16.png",
    "default_title": "Sign in to websites with accounts on Windows 10"
  },
  "icons": {
    "16": "windows16.png",
    "48": "windows48.png",
    "128": "windows128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://login.microsoftonline.com/*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://login.microsoftonline.com/*",
    "nativeMessaging"
  ],
  "applications": {
    "gecko": {
      "id": "{d4a5b766-4831-43f0-9d38-0fec359491e7}"
    }
  }
}