Windows Accounts

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

Qu'est-ce que Windows Accounts ?

Windows Accounts est une extension Chrome développée par Microsoft, et sa fonction principale est "Sign in to supported websites with accounts on Windows 10 and later versions".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Windows Accounts

Téléchargez les fichiers d'extension Windows Accounts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Windows Accounts Windows Accounts
ID ppnbnpeolgkicgegkbkbjmhlideopiji
URL Officiel https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji
Description Sign in to supported websites with accounts on Windows 10 and later versions
Taille du Fichier 6.87 KB
Nombre d'Installations 33,000,000
Version Actuelle 1.0.7
Dernière Mise à Jour 2022-06-14
Date de Publication 2017-10-04
Évaluation 2.76/5 Total 557 Évaluations
Développeur Microsoft
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://azure.microsoft.com/identity
URL de la Page de Politique de Confidentialité https://privacy.microsoft.com/en-us/PrivacyStatement
Langues Prises en Charge 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"
    ]
}