Windows Accounts
Sign in to supported websites with accounts on Windows 10 and later versions
What is Windows Accounts?
Windows Accounts is a Chrome extension developed by Microsoft, and its main feature is "Sign in to supported websites with accounts on Windows 10 and later versions".
Extension Screenshots
Download Windows Accounts Extension CRX File
Download Windows Accounts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Use this extension to sign in to supported websites with accounts on Windows 10 and later versions. If you have a Microsoft supported identity on Windows 10 or later, you won’t be required to enter your credentials to sign in to supported websites. You’ll need to use this extension if your organization has implemented conditional access policy. Currently, this extension supports Azure Active Directory identities.
Extension Basic Information
Name | Windows Accounts |
ID | ppnbnpeolgkicgegkbkbjmhlideopiji |
Official URL | https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji |
Description | Sign in to supported websites with accounts on Windows 10 and later versions |
File Size | 6.87 KB |
Installation Count | 33,000,000 |
Current Version | 1.0.7 |
Last Updated | 2022-06-14 |
Publish Date | 2017-10-04 |
Rating | 2.76/5 Total 557 Ratings |
Developer | Microsoft |
[email protected] | |
Payment Type | free |
Extension Website | http://azure.microsoft.com/identity |
Privacy Policy Page URL | https://privacy.microsoft.com/en-us/PrivacyStatement |
Supported Languages | en |
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" ] } |