Windows Accounts

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

Что такое Windows Accounts?

Windows Accounts - это расширение Chrome, разработанное Microsoft, и его основная функция - "Sign in to supported websites with accounts on Windows 10 and later versions".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Windows Accounts

Скачайте файлы расширений 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
Официальный URL 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"
    ]
}