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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |