Windows Accounts

Sign in to supported websites with accounts on Windows 10 and later versions

Windows Accounts là gì?

Windows Accounts là một tiện ích mở rộng Chrome được phát triển bởi Microsoft, và tính năng chính của nó là "Sign in to supported websites with accounts on Windows 10 and later versions".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Windows Accounts

Tải xuống các tệp mở rộng Windows Accounts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Windows Accounts Windows Accounts
ID ppnbnpeolgkicgegkbkbjmhlideopiji
URL Chính Thức https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji
Mô tả Sign in to supported websites with accounts on Windows 10 and later versions
Kích Thước Tệp 6.87 KB
Số Lần Cài Đặt 33,000,000
Phiên Bản Hiện Tại 1.0.7
Cập Nhật Lần Cuối 2022-06-14
Ngày Phát Hành 2017-10-04
Đánh Giá 2.76/5 Tổng số 557 Đánh Giá
Nhà Phát Triển Microsoft
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://azure.microsoft.com/identity
URL Trang Chính Sách Bảo Mật https://privacy.microsoft.com/en-us/PrivacyStatement
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}