Gather Mic Toggle
Mic Toggle on gather.town
什麼是Gather Mic Toggle?
Gather Mic Toggle是由Caio Rodrigues開發的Chrome擴展程式,該擴展的主要功能是“Mic Toggle on gather.town”。
擴展截圖
下載Gather Mic Toggle擴展crx文件
下載Gather Mic Toggle擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Provides a microphone toggling keyboard shortcut on the video-calling virtual space app Gather.town (https://gather.town/). Default is Ctrl+Q, but you can customize it on chrome://extensions/shortcuts.
*Disclaimer: the extension is not provided by Gather Town officially and the author has no affiliation with it 擴展基本資訊
| 名稱 | |
| ID | dicgdmbehbkbkncebodffnhkgoaebpoo |
| 官方網址 | https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo |
| 簡介 | Mic Toggle on gather.town |
| 檔案大小 | 15.3 KB |
| 安裝次數 | 86 |
| 目前版本 | 1.0 |
| 更新時間 | 2021-04-20 |
| 上架時間 | 2021-04-19 |
| 開發者 | Caio Rodrigues |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Gather Mic Toggle",
"description": "Mic Toggle on gather.town",
"version": "1.0",
"manifest_version": 2,
"icons": {
"16": "assets\/icon.png",
"48": "assets\/icon.png",
"128": "assets\/icon.png"
},
"permissions": [
"https:\/\/gather.town\/app\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/gather.town\/app\/*"
],
"js": [
"content.js"
]
}
],
"commands": {
"toggle": {
"suggested_key": {
"default": "Ctrl+Q",
"mac": "Command+Q"
},
"description": "Mute\/unmute",
"global": true
}
},
"browser_action": {
"default_icon": "assets\/icon.png",
"default_popup": "popup.html"
}
} | |