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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tracks people speaking time in order to make the meeting more inclusive."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में G-meet speaking time tracker. एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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. |
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" } } |