Slack "Also send to #Channel" Default On

A tiny extension to check the "Also send to #Channel" checkbox by default.

Что такое Slack "Also send to #Channel" Default On?

Slack "Also send to #Channel" Default On - это расширение Chrome, разработанное https://steinwurf.com, и его основная функция - "A tiny extension to check the "Also send to #Channel" checkbox by default.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Slack "Also send to #Channel" Default On

Скачайте файлы расширений Slack "Also send to #Channel" Default On в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        When using threads in Slack you get the option to also send the message you are writing to the channel. This is a checkbox you need to tick. By default this checkbox is "off".
This plugin simply checks this checkbox, so that the new default for this option is "on".                    

Основная информация о расширении

Название Slack Slack "Also send to #Channel" Default On
ID ipicacdapmgpgehdfcicmpngcajdfflb
Официальный URL https://chromewebstore.google.com/detail/slack-also-send-to-channe/ipicacdapmgpgehdfcicmpngcajdfflb
Описание A tiny extension to check the "Also send to #Channel" checkbox by default.
Размер файла 14.14 KB
Количество установок 593
Текущая Версия 1.0.7
Последнее Обновление 2023-02-20
Дата публикации 2020-02-28
Рейтинг 5.00/5 Всего 4 оценок
Разработчик https://steinwurf.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/steinwurf/slack-also-send-to-channel-default-on-chrome-extension
URL страницы помощи https://github.com/steinwurf/slack-also-send-to-channel-default-on-chrome-extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slack \"Also send to #Channel\" Default On",
    "version": "1.0.7",
    "description": "A tiny extension to check the \"Also send to #Channel\" checkbox by default.",
    "permissions": [],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/app.slack.com\/client\/*",
                "http:\/\/app.slack.com\/client\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "manifest_version": 3
}