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”。

擴展截圖

screenshot
screenshot

下載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 Windows Accounts
ID ppnbnpeolgkicgegkbkbjmhlideopiji
官方網址 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"
    ]
}