Dab.Chat Enhancenment Suite
An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat
What is Dab.Chat Enhancenment Suite?
Dab.Chat Enhancenment Suite is a Chrome extension developed by http://dab.chat, and its main feature is "An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat".
Extension Screenshots
Download Dab.Chat Enhancenment Suite Extension CRX File
Download Dab.Chat Enhancenment Suite extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | okmhibahbbfkcmcolfmkbpieeeojoeaj |
Official URL | https://chrome.google.com/webstore/detail/dabchat-enhancenment-suit/okmhibahbbfkcmcolfmkbpieeeojoeaj |
Description | An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat |
File Size | 48.74 KB |
Installation Count | 23 |
Current Version | 0.2.02 |
Last Updated | 2020-06-04 |
Publish Date | 2020-06-04 |
Rating | 5.00/5 Total 1 Ratings |
Developer | http://dab.chat |
[email protected] | |
Payment Type | free |
Extension Website | https://dab.chat |
Help Page URL | https://dab.chat/contact |
Supported Languages | 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" } } |