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"
    ]
}