Google Meet Volume Control
Client side volume control for Google Meet
Wat is Google Meet Volume Control?
Google Meet Volume Control is een Chrome-extensie ontwikkeld door https://matthew-cash.com, en de belangrijkste functie is "Client side volume control for Google Meet".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Meet Volume Control
Download Google Meet Volume Control-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | nkbnlgonoekhmldnihfdpakhhjhmdkbd |
| Officiële URL | https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd |
| Beschrijving | Client side volume control for Google Meet |
| Bestandsgrootte | 14.06 KB |
| Aantal Installaties | 54,008 |
| Huidige Versie | 1.2.0 |
| Laatst Bijgewerkt | 2023-06-29 |
| Publicatiedatum | 2020-09-15 |
| Beoordeling | 4.56/5 Totaal 136 Beoordelingen |
| Ontwikkelaar | https://matthew-cash.com |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/MatthewCash/google-meet-volume-control |
| Help Pagina-URL | https://github.com/MatthewCash/google-meet-volume-control/issues |
| Ondersteunde Talen | 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"
]
} | |