Windows Accounts
Sign in to supported websites with accounts on Windows 10 and later versions
Co je Windows Accounts?
Windows Accounts je rozšíření Chrome vyvinuté Microsoft, a jeho hlavní funkcí je „Sign in to supported websites with accounts on Windows 10 and later versions“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Windows Accounts
Stáhněte si soubory rozšíření Windows Accounts ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Windows Accounts |
ID | ppnbnpeolgkicgegkbkbjmhlideopiji |
Oficiální URL | https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji |
Popis | Sign in to supported websites with accounts on Windows 10 and later versions |
Velikost souboru | 6.87 KB |
Počet instalací | 33,000,000 |
Aktuální Verze | 1.0.7 |
Poslední Aktualizace | 2022-06-14 |
Datum Vydání | 2017-10-04 |
Hodnocení | 2.76/5 Celkem 557 Hodnocení |
Vývojář | Microsoft |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://azure.microsoft.com/identity |
URL Stránky Zásad Ochrany Soukromí | https://privacy.microsoft.com/en-us/PrivacyStatement |
Podporované Jazyky | 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" ] } |