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ファイルをダウンロード
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 |
Eメール | [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" ] } |