Windows Accounts
Sign in to supported websites with accounts on Windows 10 and later versions
Windows Accounts란 무엇입니까?
Windows Accounts은(는) Microsoft에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sign in to supported websites with accounts on Windows 10 and later versions"입니다.
확장 프로그램 스크린샷
Windows Accounts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |