G-meet speaking time tracker.

Tracks people speaking time in order to make the meeting more inclusive.

G-meet speaking time tracker. là gì?

G-meet speaking time tracker. là một tiện ích mở rộng Chrome được phát triển bởi alcaprar, và tính năng chính của nó là "Tracks people speaking time in order to make the meeting more inclusive.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng G-meet speaking time tracker.

Tải xuống các tệp mở rộng G-meet speaking time tracker. dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extensions shows the speaking time of each participant next to his/her name. There is also a popup that shows the summary of the meeting, showing the speaking time of all the participants.
If you would like to see how long each participant is speaking and balance the discussion among all the players, this extension is for you.

Github repo: https://github.com/alessandrocaprarelli/meet-speaking-time                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên G-meet speaking time tracker. G-meet speaking time tracker.
ID lhnkmjolfffhgbihddcnmajlldgjmabn
URL Chính Thức https://chromewebstore.google.com/detail/g-meet-speaking-time-trac/lhnkmjolfffhgbihddcnmajlldgjmabn
Mô tả Tracks people speaking time in order to make the meeting more inclusive.
Kích Thước Tệp 70.36 KB
Số Lần Cài Đặt 150
Phiên Bản Hiện Tại 0.4.12
Cập Nhật Lần Cuối 2021-10-28
Ngày Phát Hành 2021-02-17
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển alcaprar
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "G-meet speaking time tracker.",
    "version": "0.4.12",
    "description": "Tracks people speaking time in order to make the meeting more inclusive.",
    "manifest_version": 2,
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "permissions": [
        "clipboardWrite",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "globalcontentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "img\/128.png"
    }
}