Slack "Also send to #Channel" Default On

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

¿Qué es Slack "Also send to #Channel" Default On?

Slack "Also send to #Channel" Default On es una extensión de Chrome desarrollada por https://steinwurf.com, y su función principal es "A tiny extension to check the "Also send to #Channel" checkbox by default.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Slack "Also send to #Channel" Default On

Descarga archivos de extensión Slack "Also send to #Channel" Default On en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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".                    

Información Básica de la Extensión

Nombre Slack Slack "Also send to #Channel" Default On
ID ipicacdapmgpgehdfcicmpngcajdfflb
URL Oficial https://chromewebstore.google.com/detail/slack-also-send-to-channe/ipicacdapmgpgehdfcicmpngcajdfflb
Descripción A tiny extension to check the "Also send to #Channel" checkbox by default.
Tamaño del Archivo 14.14 KB
Cantidad de Instalaciones 593
Versión Actual 1.0.7
Última Actualización 2023-02-20
Fecha de Publicación 2020-02-28
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador https://steinwurf.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/steinwurf/slack-also-send-to-channel-default-on-chrome-extension
URL de la Página de Ayuda https://github.com/steinwurf/slack-also-send-to-channel-default-on-chrome-extension
Idiomas Soportados 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
}