Windows Accounts

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

O que é Windows Accounts?

Windows Accounts é uma extensão do Chrome desenvolvida por Microsoft, e sua principal característica é "Sign in to supported websites with accounts on Windows 10 and later versions".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Windows Accounts

Baixe arquivos de extensão Windows Accounts no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Windows Accounts Windows Accounts
ID ppnbnpeolgkicgegkbkbjmhlideopiji
URL Oficial https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji
Descrição Sign in to supported websites with accounts on Windows 10 and later versions
Tamanho do Arquivo 6.87 KB
Contagem de Instalações 33,000,000
Versão Atual 1.0.7
Última Atualização 2022-06-14
Data de Publicação 2017-10-04
Classificação 2.76/5 Total de 557 Avaliações
Desenvolvedor Microsoft
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://azure.microsoft.com/identity
URL da Página de Política de Privacidade https://privacy.microsoft.com/en-us/PrivacyStatement
Idiomas Suportados 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"
    ]
}