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.はalcaprarによって開発されたChromeの拡張機能で、その主な機能は「Tracks people speaking time in order to make the meeting more inclusive.」です。

拡張機能のスクリーンショット

screenshot
screenshot

G-meet speaking time tracker.拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}