Windows Accounts
Sign in to supported websites with accounts on Windows 10 and later versions
Windows Accounts क्या है?
Windows Accounts Microsoft द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sign in to supported websites with accounts on Windows 10 and later versions"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Windows Accounts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |