Windows Accounts
Sign in to supported websites with accounts on Windows 10 and later versions
Wat is Windows Accounts?
Windows Accounts is een Chrome-extensie ontwikkeld door Microsoft, en de belangrijkste functie is "Sign in to supported websites with accounts on Windows 10 and later versions".
Extensie Screenshots
Download het CRX-bestand van de extensie Windows Accounts
Download Windows Accounts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Windows Accounts |
ID | ppnbnpeolgkicgegkbkbjmhlideopiji |
Officiële URL | https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji |
Beschrijving | Sign in to supported websites with accounts on Windows 10 and later versions |
Bestandsgrootte | 6.87 KB |
Aantal Installaties | 33,000,000 |
Huidige Versie | 1.0.7 |
Laatst Bijgewerkt | 2022-06-14 |
Publicatiedatum | 2017-10-04 |
Beoordeling | 2.76/5 Totaal 557 Beoordelingen |
Ontwikkelaar | Microsoft |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://azure.microsoft.com/identity |
URL van de Privacybeleid Pagina | https://privacy.microsoft.com/en-us/PrivacyStatement |
Ondersteunde Talen | 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" ] } |