Trackit | Meet Attendance Tracker
Most advanced and easy to use attendance tracker for google meet.
Trackit | Meet Attendance Tracker क्या है?
Trackit | Meet Attendance Tracker https://visualbrahma.tech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Most advanced and easy to use attendance tracker for google meet."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trackit | Meet Attendance Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Trackit is an attendance tracker tool. Trackit is the solution for saving attendance in google meet video calls. It's totally free to use and anyone can customise it as per their needs. Automatically save attendance during google meet video calls. The extension records attendance automatically when you are in a meet and saves it. Once the meet is over it will open the attendance report in a new tab. You can access your saved attendance data anytime on our website. Attendance report can be easily shared by link. Website : - https://trackitnow.pythonanywhere.com Source code is available on Github : https://github.com/blaze2004/trackit Developed by Shubham Tiwari
एक्सटेंशन की मूल जानकारी
नाम | Trackit | Meet Attendance Tracker |
ID | aopejafeamijmefcoclhohoaggbfhcgh |
आधिकारिक URL | https://chromewebstore.google.com/detail/trackit-meet-attendance-t/aopejafeamijmefcoclhohoaggbfhcgh |
विवरण | Most advanced and easy to use attendance tracker for google meet. |
फ़ाइल का आकार | 310 KB |
स्थापना संख्या | 147 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2023-04-26 |
प्रकाशन तिथि | 2022-03-01 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | https://visualbrahma.tech |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://trackit.zeabur.app |
सहायता पृष्ठ URL | https://trackit.zeabur.app/mac/docs/ |
गोपनीयता नीति पृष्ठ URL | https://trackit.zeabur.app/mac/privacy-policy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": { "128": "icons\/mac-logo-128.png", "16": "icons\/mac-logo-16.png", "32": "icons\/mac-logo-32.png", "48": "icons\/mac-logo-48.png" }, "default_popup": "popup.html", "default_title": "Trackit | Meet Attendance Collector" }, "author": "Shubham Tiwari", "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "attendance.js" ], "matches": [ "https:\/\/meet.google.com\/*" ], "run_at": "document_idle" }, { "js": [ "save.js" ], "matches": [ "https:\/\/trackit.zeabur.app\/*", "https:\/\/trackit.visualbrahma.tech\/*" ], "run_at": "document_idle" } ], "description": "Most advanced and easy to use attendance tracker for google meet.", "icons": { "128": "icons\/mac-logo-128.png", "16": "icons\/mac-logo-16.png", "32": "icons\/mac-logo-32.png", "48": "icons\/mac-logo-48.png" }, "manifest_version": 3, "name": "Trackit | Meet Attendance Tracker", "permissions": [ "storage" ], "version": "1.4" } |