Slack Hide Typing

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

什麼是Slack Hide Typing?

Slack Hide Typing是由Andrew Conner開發的Chrome擴展程式,該擴展的主要功能是“This lightweight extension prevents Slack from sending a typing status to channels and private messages.”。

擴展截圖

screenshot

下載Slack Hide Typing擴展crx文件

下載Slack Hide Typing擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Slack Hide Typing Slack Hide Typing
ID oeedcdnohdcpcadbjakljhnmdlhcgnch
官方網址 https://chromewebstore.google.com/detail/slack-hide-typing/oeedcdnohdcpcadbjakljhnmdlhcgnch
簡介 This lightweight extension prevents Slack from sending a typing status to channels and private messages.
檔案大小 41.73 KB
安裝次數 516
目前版本 2.1.0
更新時間 2023-06-02
上架時間 2019-07-23
評分 4.20/5 共 5 次評分
開發者 Andrew Conner
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.andrewconner.org/slack-hide-typing
支援的語言 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"
            ]
        }
    ]
}