Windows Accounts

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

Co to jest Windows Accounts?

Windows Accounts to rozszerzenie Chrome opracowane przez Microsoft, a jego główną funkcją jest „Sign in to supported websites with accounts on Windows 10 and later versions”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Windows Accounts

Pobierz pliki rozszerzeń Windows Accounts w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Windows Accounts Windows Accounts
ID ppnbnpeolgkicgegkbkbjmhlideopiji
Oficjalny URL https://chromewebstore.google.com/detail/windows-accounts/ppnbnpeolgkicgegkbkbjmhlideopiji
Opis Sign in to supported websites with accounts on Windows 10 and later versions
Rozmiar pliku 6.87 KB
Liczba instalacji 33,000,000
Aktualna Wersja 1.0.7
Ostatnia Aktualizacja 2022-06-14
Data Publikacji 2017-10-04
Ocena 2.76/5 Łącznie 557 Oceny
Deweloper Microsoft
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://azure.microsoft.com/identity
Adres URL Strony Polityki Prywatności https://privacy.microsoft.com/en-us/PrivacyStatement
Obsługiwane Języki 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"
    ]
}