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은(는) https://steinwurf.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tiny extension to check the "Also send to #Channel" checkbox by default."입니다.

확장 프로그램 스크린샷

screenshot

Slack "Also send to #Channel" Default On 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}