Slack Hide Typing
This lightweight extension prevents Slack from sending a typing status to channels and private messages.
Что такое Slack Hide Typing?
Slack Hide Typing - это расширение Chrome, разработанное Andrew Conner, и его основная функция - "This lightweight extension prevents Slack from sending a typing status to channels and private messages.".
Снимки экрана расширения
Скачать файл CRX расширения Slack Hide Typing
Скачайте файлы расширений 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 |
ID | oeedcdnohdcpcadbjakljhnmdlhcgnch |
Официальный URL | 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" ] } ] } |