Google Meet Volume Control
Client side volume control for Google Meet
What is Google Meet Volume Control?
Google Meet Volume Control is a Chrome extension developed by https://matthew-cash.com, and its main feature is "Client side volume control for Google Meet".
Extension Screenshots
Download Google Meet Volume Control Extension CRX File
Download Google Meet Volume Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Set a global volume for all Meet participants (client side). Click the extension's icon while in Google Meet to adjust the volume using a simple slider.
Extension Basic Information
Name | Google Meet Volume Control |
ID | nkbnlgonoekhmldnihfdpakhhjhmdkbd |
Official URL | https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd |
Description | Client side volume control for Google Meet |
File Size | 14.06 KB |
Installation Count | 54,008 |
Current Version | 1.2.0 |
Last Updated | 2023-06-29 |
Publish Date | 2020-09-15 |
Rating | 4.56/5 Total 136 Ratings |
Developer | https://matthew-cash.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/MatthewCash/google-meet-volume-control |
Help Page URL | https://github.com/MatthewCash/google-meet-volume-control/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet Volume Control", "description": "Client side volume control for Google Meet", "version": "1.2.0", "short_name": "Meet Volume", "manifest_version": 3, "action": { "default_popup": "src\/popup\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "src\/js\/meet.js" ] } ], "background": { "service_worker": "src\/js\/background.js" }, "permissions": [ "storage", "background", "declarativeContent" ] } |