Talk Time for Google Meet
Track and display the talk time and percent of talking time for each participant in a Google Meet
Talk Time for Google Meet क्या है?
Talk Time for Google Meet matthew.a.kruse द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Track and display the talk time and percent of talking time for each participant in a Google Meet"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Talk Time for Google Meet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Talk Time for Google Meet automatically detects when each participant in a meeting speaks, and tracks the total speaking time for each person. It also allows you to arbitrarily group participants to combine their time and track it together. This allows leaders to make sure they are not hogging the conversation, companies to make sure they are letting their clients speak, teachers to make sure each student is heard, and anyone focused on diversity to make sure each perspective is heard.
एक्सटेंशन की मूल जानकारी
नाम | Talk Time for Google Meet |
ID | bonlpfoeaoeadalicohkefgpkjplmfbg |
आधिकारिक URL | https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg |
विवरण | Track and display the talk time and percent of talking time for each participant in a Google Meet |
फ़ाइल का आकार | 61.07 KB |
स्थापना संख्या | 1,714 |
वर्तमान संस्करण | 3.1 |
अंतिम अपडेट | 2021-03-09 |
प्रकाशन तिथि | 2021-02-28 |
रेटिंग | 3.82/5 कुल 11 रेटिंग्स |
डेवलपर | matthew.a.kruse |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://EveryoneShouldHaveAVoice.com |
सहायता पृष्ठ URL | https://github.com/matt-kruse/talk-time |
गोपनीयता नीति पृष्ठ URL | https://socialfixer.com/privacy.txt |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Track and display the talk time and percent of talking time for each participant in a Google Meet", "manifest_version": 2, "name": "Talk Time for Google Meet", "author": "Matt Kruse", "version": "3.1", "homepage_url": "https:\/\/EveryoneShouldHaveAVoice.com\/", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "storage", "https:\/\/meet.google.com\/*", "https:\/\/EveryoneShouldHaveAVoice.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "resources\/*.png" ] } |