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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
    ]
}