Windows Accounts

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

Was ist Windows Accounts?

Windows Accounts ist eine Chrome-Erweiterung, die von Microsoft entwickelt wurde, und ihr Hauptmerkmal ist "Sign in to supported websites with accounts on Windows 10 and later versions".

Erweiterungsscreenshots

screenshot
screenshot

Windows Accounts-Erweiterungs-CRX-Datei herunterladen

Laden Sie Windows Accounts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Windows Accounts Windows Accounts
ID ppnbnpeolgkicgegkbkbjmhlideopiji
Offizielle URL https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji
Beschreibung Sign in to supported websites with accounts on Windows 10 and later versions
Dateigröße 6.87 KB
Installationsanzahl 33,000,000
Aktuelle Version 1.0.7
Letztes Update 2022-06-14
Veröffentlichungsdatum 2017-10-04
Bewertung 2.76/5 Insgesamt 557 Bewertungen
Entwickler Microsoft
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://azure.microsoft.com/identity
URL der Datenschutzrichtlinien-Seite https://privacy.microsoft.com/en-us/PrivacyStatement
Unterstützte Sprachen 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"
    ]
}