Google Meet Volume Control
Client side volume control for Google Meet
Apa itu Google Meet Volume Control?
Google Meet Volume Control adalah ekstensi Chrome yang dikembangkan oleh https://matthew-cash.com, dan fitur utamanya adalah "Client side volume control for Google Meet".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Google Meet Volume Control
Unduh file ekstensi Google Meet Volume Control dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Google Meet Volume Control |
ID | nkbnlgonoekhmldnihfdpakhhjhmdkbd |
URL Resmi | https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd |
Deskripsi | Client side volume control for Google Meet |
Ukuran File | 14.06 KB |
Jumlah Instalasi | 54,008 |
Versi Saat Ini | 1.2.0 |
Terakhir Diperbarui | 2023-06-29 |
Tanggal Publikasi | 2020-09-15 |
Penilaian | 4.56/5 Total 136 Penilaian |
Pengembang | https://matthew-cash.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/MatthewCash/google-meet-volume-control |
URL Halaman Bantuan | https://github.com/MatthewCash/google-meet-volume-control/issues |
Bahasa yang Didukung | 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" ] } |