Google Meet Volume Control
Client side volume control for Google Meet
什麼是Google Meet Volume Control?
Google Meet Volume Control是由https://matthew-cash.com開發的Chrome擴展程式,該擴展的主要功能是“Client side volume control for Google Meet”。
擴展截圖
下載Google Meet Volume Control擴展crx文件
下載Google Meet Volume Control擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | nkbnlgonoekhmldnihfdpakhhjhmdkbd |
| 官方網址 | https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd |
| 簡介 | Client side volume control for Google Meet |
| 檔案大小 | 14.06 KB |
| 安裝次數 | 54,008 |
| 目前版本 | 1.2.0 |
| 更新時間 | 2023-06-29 |
| 上架時間 | 2020-09-15 |
| 評分 | 4.56/5 共 136 次評分 |
| 開發者 | https://matthew-cash.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/MatthewCash/google-meet-volume-control |
| 說明頁面URL | https://github.com/MatthewCash/google-meet-volume-control/issues |
| 支援的語言 | 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"
]
} | |