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 là gì?
Dab.Chat Enhancenment Suite là một tiện ích mở rộng Chrome được phát triển bởi http://dab.chat, và tính năng chính của nó là "An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Dab.Chat Enhancenment Suite
Tải xuống các tệp mở rộng Dab.Chat Enhancenment Suite dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | okmhibahbbfkcmcolfmkbpieeeojoeaj |
URL Chính Thức | https://chrome.google.com/webstore/detail/dabchat-enhancenment-suit/okmhibahbbfkcmcolfmkbpieeeojoeaj |
Mô tả | An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat |
Kích Thước Tệp | 48.74 KB |
Số Lần Cài Đặt | 23 |
Phiên Bản Hiện Tại | 0.2.02 |
Cập Nhật Lần Cuối | 2020-06-04 |
Ngày Phát Hành | 2020-06-04 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | http://dab.chat |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://dab.chat |
URL Trang Trợ Giúp | https://dab.chat/contact |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |