Google Meet Default Account
Set the default account for google meet for users who are signed in to multiple Google accounts. Icon from Font Awesome.
Google Meet Default Account क्या है?
Google Meet Default Account sitati.kituyi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set the default account for google meet for users who are signed in to multiple Google accounts. Icon from Font Awesome."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Meet Default Account एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
When you work with multiple Google accounts, one small annoyance is having to switch to the correct account every time you open a Google Meet URL. This extension lets you pick a default Google account specifically for Google Meet, whether or not that is the primary Google account you are logged in to. That allows you to have your personal account as the default account in your browser, but always open Google Meet links with your work account. Using 'force mode', you can choose whether the extension should always override the set authUser. This is useful if you never use Google Meet in your personal account Using the 'hide AuthUser after redirect' option, you can set the extension up to remove your authUser parameter once the meeting is loaded with your correct user. This is useful for copying & pasting the link to invite others to join, without including your authUser parameter, which won't always be the same one for others. Free and open source: https://github.com/lesiki/google-meet-default-account
एक्सटेंशन की मूल जानकारी
नाम | Google Meet Default Account |
ID | cniopfhdifdmfkdjdjhkdkdcikomdjhb |
आधिकारिक URL | https://chromewebstore.google.com/detail/google-meet-default-accou/cniopfhdifdmfkdjdjhkdkdcikomdjhb |
विवरण | Set the default account for google meet for users who are signed in to multiple Google accounts. Icon from Font Awesome. |
फ़ाइल का आकार | 46.35 KB |
स्थापना संख्या | 1,788 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2021-06-21 |
प्रकाशन तिथि | 2020-05-24 |
रेटिंग | 4.29/5 कुल 28 रेटिंग्स |
डेवलपर | sitati.kituyi |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/lesiki/google-meet-default-account |
सहायता पृष्ठ URL | https://github.com/lesiki/google-meet-default-account/issues |
समर्थित भाषाएँ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet Default Account", "version": "1.2", "manifest_version": 2, "description": "Set the default account for google meet for users who are signed in to multiple Google accounts. Icon from Font Awesome.", "permissions": [ "storage", "webRequest", "webRequestBlocking", "https:\/\/meet.google.com\/*" ], "icons": { "16": "headset_16.png", "48": "headset_48.png", "128": "headset_128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "contentScript.js" ] } ], "default_locale": "en", "options_ui": { "page": "options.html", "open_in_tab": false } } |