Slack Hide Typing

This lightweight extension prevents Slack from sending a typing status to channels and private messages.

Co je Slack Hide Typing?

Slack Hide Typing je rozšíření Chrome vyvinuté Andrew Conner, a jeho hlavní funkcí je „This lightweight extension prevents Slack from sending a typing status to channels and private messages.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Slack Hide Typing

Stáhněte si soubory rozšíření Slack Hide Typing ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Slack Hide Typing prevents the Slack website from sending typing indications to other users. You will be able to still see when other people are typing, unless they're also using this extension.

The source is available at: https://github.com/andrewconner/slack-hide-typing                    

Základní Informace o Rozšíření

Název Slack Hide Typing Slack Hide Typing
ID oeedcdnohdcpcadbjakljhnmdlhcgnch
Oficiální URL https://chromewebstore.google.com/detail/slack-hide-typing/oeedcdnohdcpcadbjakljhnmdlhcgnch
Popis This lightweight extension prevents Slack from sending a typing status to channels and private messages.
Velikost souboru 41.73 KB
Počet instalací 516
Aktuální Verze 2.1.0
Poslední Aktualizace 2023-06-02
Datum Vydání 2019-07-23
Hodnocení 4.20/5 Celkem 5 Hodnocení
Vývojář Andrew Conner
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://www.andrewconner.org/slack-hide-typing
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slack Hide Typing",
    "version": "2.1.0",
    "manifest_version": 2,
    "description": "This lightweight extension prevents Slack from sending a typing status to channels and private messages.",
    "homepage_url": "http:\/\/www.andrewconner.org\/slack-hide-typing",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "512": "icons\/icon512.png"
    },
    "permissions": [
        "https:\/\/*.slack.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}