Windows Accounts
Sign in to supported websites with accounts on Windows 10 and later versions
Apa itu Windows Accounts?
Windows Accounts adalah ekstensi Chrome yang dikembangkan oleh Microsoft, dan fitur utamanya adalah "Sign in to supported websites with accounts on Windows 10 and later versions".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Windows Accounts
Unduh file ekstensi Windows Accounts dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Windows Accounts |
ID | ppnbnpeolgkicgegkbkbjmhlideopiji |
URL Resmi | https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji |
Deskripsi | Sign in to supported websites with accounts on Windows 10 and later versions |
Ukuran File | 6.87 KB |
Jumlah Instalasi | 33,000,000 |
Versi Saat Ini | 1.0.7 |
Terakhir Diperbarui | 2022-06-14 |
Tanggal Publikasi | 2017-10-04 |
Penilaian | 2.76/5 Total 557 Penilaian |
Pengembang | Microsoft |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://azure.microsoft.com/identity |
URL Halaman Kebijakan Privasi | https://privacy.microsoft.com/en-us/PrivacyStatement |
Bahasa yang Didukung | 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" ] } |