Windows Accounts
Sign in to supported websites with accounts on Windows 10 and later versions
Windows Accountsคืออะไร?
Windows Accounts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Microsoft และคุณลักษณะหลักของมันคือ "Sign in to supported websites with accounts on Windows 10 and later versions"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Windows Accounts
ดาวน์โหลดไฟล์ส่วนขยาย Windows Accounts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Windows Accounts |
ID | ppnbnpeolgkicgegkbkbjmhlideopiji |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji |
คำอธิบาย | Sign in to supported websites with accounts on Windows 10 and later versions |
ขนาดไฟล์ | 6.87 KB |
จำนวนการติดตั้ง | 33,000,000 |
เวอร์ชันปัจจุบัน | 1.0.7 |
อัปเดตครั้งล่าสุด | 2022-06-14 |
วันที่เผยแพร่ | 2017-10-04 |
คะแนน | 2.76/5 รวมทั้งหมด 557 คะแนน |
ผู้พัฒนา | Microsoft |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://azure.microsoft.com/identity |
URL หน้านโยบายความเป็นส่วนตัว | https://privacy.microsoft.com/en-us/PrivacyStatement |
ภาษาที่รองรับ | 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" ] } |