Dab.Chat Enhancenment Suite
An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat
什麼是Dab.Chat Enhancenment Suite?
Dab.Chat Enhancenment Suite是由http://dab.chat開發的Chrome擴展程式,該擴展的主要功能是“An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat”。
擴展截圖
下載Dab.Chat Enhancenment Suite擴展crx文件
下載Dab.Chat Enhancenment Suite擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Adds a global* Push-to-Talk key to Dab.chat chat rooms. Adds global* Toke/Group/Next shortcuts to the extension. * Works across all chrome tabs, but not outside of chrome. * Works from most applications when used with Vivaldi.
擴展基本資訊
名稱 | |
ID | okmhibahbbfkcmcolfmkbpieeeojoeaj |
官方網址 | https://chrome.google.com/webstore/detail/dabchat-enhancenment-suit/okmhibahbbfkcmcolfmkbpieeeojoeaj |
簡介 | An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat |
檔案大小 | 48.74 KB |
安裝次數 | 23 |
目前版本 | 0.2.02 |
更新時間 | 2020-06-04 |
上架時間 | 2020-06-04 |
評分 | 5.00/5 共 1 次評分 |
開發者 | http://dab.chat |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://dab.chat |
說明頁面URL | https://dab.chat/contact |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "minimum_chrome_version": "35", "name": "Dab.Chat Enhancenment Suite", "permissions": [ "tabs", "desktopCapture" ], "short_name": "dab.chat PTT", "version": "0.2.02", "background": { "scripts": [ "background.js" ] }, "commands": { "mic-up": { "description": "Mic Up and Talk", "suggested_key": { "default": "Alt+Z" }, "global": true }, "push-toke": { "description": "Join Toke Sesh", "suggested_key": { "default": "Alt+T" } }, "push-group": { "description": "Join Group Tokes", "suggested_key": { "default": "Alt+G" } }, "push-next": { "description": "Join Next Timer", "suggested_key": { "default": "Alt+N" } } }, "content_scripts": [ { "js": [ "jquery.min.js", "content.js" ], "matches": [ "https:\/\/dab.chat\/*", "https:\/\/new.dab.chat\/*" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" } } |