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 |
公式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 |
Eメール | [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" } } |