Windows Accounts
Sign in to supported websites with accounts on Windows 10 and later versions
Hvad er Windows Accounts?
Windows Accounts er en Chrome-udvidelse udviklet af Microsoft, og dens hovedfunktion er "Sign in to supported websites with accounts on Windows 10 and later versions".
Udvidelsesskærmbilleder
Download Windows Accounts-udvidelses-CRX-fil
Download Windows Accounts-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Windows Accounts |
ID | ppnbnpeolgkicgegkbkbjmhlideopiji |
Officiel URL | https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji |
Beskrivelse | Sign in to supported websites with accounts on Windows 10 and later versions |
Filstørrelse | 6.87 KB |
Antal Installationer | 33,000,000 |
Nuværende Version | 1.0.7 |
Senest Opdateret | 2022-06-14 |
Udgivelsesdato | 2017-10-04 |
Bedømmelse | 2.76/5 Samlet 557 Bedømmelser |
Udvikler | Microsoft |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://azure.microsoft.com/identity |
URL til Fortrolighedspolitik Side | https://privacy.microsoft.com/en-us/PrivacyStatement |
Understøttede Sprog | 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" ] } |