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 |
电子邮箱 | [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" ] } |