Slack Hide Typing

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

Cos'è Slack Hide Typing?

Slack Hide Typing è un'estensione di Chrome sviluppata da Andrew Conner, e la sua funzione principale è "This lightweight extension prevents Slack from sending a typing status to channels and private messages.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Slack Hide Typing

Scarica i file di estensione Slack Hide Typing in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Slack Hide Typing Slack Hide Typing
ID oeedcdnohdcpcadbjakljhnmdlhcgnch
URL Ufficiale https://chromewebstore.google.com/detail/slack-hide-typing/oeedcdnohdcpcadbjakljhnmdlhcgnch
Descrizione This lightweight extension prevents Slack from sending a typing status to channels and private messages.
Dimensione del File 41.73 KB
Conteggio Installazioni 516
Versione Corrente 2.1.0
Ultimo Aggiornamento 2023-06-02
Data di Pubblicazione 2019-07-23
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore Andrew Conner
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.andrewconner.org/slack-hide-typing
Lingue Supportate 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"
            ]
        }
    ]
}