Dab.Chat Enhancenment Suite

An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat

Was ist Dab.Chat Enhancenment Suite?

Dab.Chat Enhancenment Suite ist eine Chrome-Erweiterung, die von http://dab.chat entwickelt wurde, und ihr Hauptmerkmal ist "An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat".

Erweiterungsscreenshots

screenshot

Dab.Chat Enhancenment Suite-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dab.Chat Enhancenment Suite-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Dab.Chat Enhancenment Suite Dab.Chat Enhancenment Suite
ID okmhibahbbfkcmcolfmkbpieeeojoeaj
Offizielle URL https://chrome.google.com/webstore/detail/dabchat-enhancenment-suit/okmhibahbbfkcmcolfmkbpieeeojoeaj
Beschreibung An extension to add a global push-to talk key, and allow Screen-Sharing on dab.chat
Dateigröße 48.74 KB
Installationsanzahl 23
Aktuelle Version 0.2.02
Letztes Update 2020-06-04
Veröffentlichungsdatum 2020-06-04
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler http://dab.chat
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://dab.chat
Hilfeseite URL https://dab.chat/contact
Unterstützte Sprachen 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"
    }
}