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開發的Chrome擴展程式,該擴展的主要功能是“Most advanced and easy to use attendance tracker for google meet.”。

擴展截圖

screenshot
screenshot

下載Trackit | Meet Attendance Tracker擴展crx文件

下載Trackit | Meet Attendance Tracker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Trackit | Meet Attendance Tracker
ID aopejafeamijmefcoclhohoaggbfhcgh
官方網址 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"
}