G-meet speaking time tracker.

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

Что такое G-meet speaking time tracker.?

G-meet speaking time tracker. - это расширение Chrome, разработанное alcaprar, и его основная функция - "Tracks people speaking time in order to make the meeting more inclusive.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения G-meet speaking time tracker.

Скачайте файлы расширений G-meet speaking time tracker. в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название G-meet speaking time tracker. G-meet speaking time tracker.
ID lhnkmjolfffhgbihddcnmajlldgjmabn
Официальный URL https://chromewebstore.google.com/detail/g-meet-speaking-time-trac/lhnkmjolfffhgbihddcnmajlldgjmabn
Описание Tracks people speaking time in order to make the meeting more inclusive.
Размер файла 70.36 KB
Количество установок 150
Текущая Версия 0.4.12
Последнее Обновление 2021-10-28
Дата публикации 2021-02-17
Рейтинг 3.67/5 Всего 3 оценок
Разработчик alcaprar
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}