NeverLateAgain - Auto Join Google Meet
Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.
NeverLateAgain - Auto Join Google Meet क्या है?
NeverLateAgain - Auto Join Google Meet https://nickalden.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NeverLateAgain - Auto Join Google Meet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Have you ever been late to a Gmeet class for stupid, inconvenient reasons? Or do you ever just wanna sit back and not have to check your schedule every so often? Yeah, me too... NeverLateAgain makes sure you're never late again to any Google Meet Classes. Conveniently displays classes you have next. Joins the Google Meet 2 minutes early. Automatically closes cam & mic, and joins in. And the best bit, You won't have to worry about being late ever again. Get A+'s for attending early, and no more worrying about schedules!
एक्सटेंशन की मूल जानकारी
नाम | NeverLateAgain - Auto Join Google Meet |
ID | ihieolohdbdkcinfmkeigkpemneddpib |
आधिकारिक URL | https://chromewebstore.google.com/detail/neverlateagain-auto-join/ihieolohdbdkcinfmkeigkpemneddpib |
विवरण | Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again. |
फ़ाइल का आकार | 459 KB |
स्थापना संख्या | 99 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2021-08-04 |
प्रकाशन तिथि | 2021-08-03 |
रेटिंग | 4.25/5 कुल 4 रेटिंग्स |
डेवलपर | https://nickalden.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.nickalden.io/neverlate |
सहायता पृष्ठ URL | https://www.nickalden.io/neverlate |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Automatically joins GMeet events. Syncs with Google Calendar. No more worrying about schedules. Never Late Again.", "manifest_version": 2, "name": "NeverLateAgain - Auto Join Google Meet", "version": "1.0.1", "oauth2": { "client_id": "1095718937705-2jbeckv5md3cl4u2h77fgg0jvk74lqba.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/calendar.events.readonly", "profile email" ] }, "background": { "scripts": [ ".\/background.js" ] }, "browser_action": { "default_icon": { "32": "popuplogo.png" }, "default_popup": "popup.html" }, "icons": { "128": "popuplogo.png" }, "permissions": [ "*:\/\/meet.google.com\/*", "identity", "identity.email", "storage", "tabs", "alarms" ], "content_scripts": [ { "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "contentScript.js" ] } ] } |