SlackDeck

Arrange channels side-by-side

SlackDeckとは何ですか?

SlackDeckはYuta Yamamotoによって開発されたChromeの拡張機能で、その主な機能は「Arrange channels side-by-side」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

SlackDeck拡張機能のCRXファイルをダウンロード

SlackDeck拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ■概要
Slackのチャンネルをカラム形式で表示させることができます。

■機能
・Slackチャンネルをカラムとして追加&並び替え&削除することができます。
・カラムの幅は4種類から選べます(カラム追加後に変更できます)。
・保存ボタンをクリックすることで現在のカラムの状態を保存し、次回読み込み時に復元することができます。
・カラム上部の入力ボックスからカラム名を設定できます。

詳しい使い方はコチラ:
https://github.com/yamamoto-yuta/slack-deck/blob/main/README.md

■機能要望・不具合報告など
この拡張機能のコードは下記リポジトリで公開されています。機能要望や不具合報告等はこちらのissueからご登録ください。
https://github.com/yamamoto-yuta/slack-deck

■リリースノート
下記Releaseから確認できます。
https://github.com/yamamoto-yuta/slack-deck/releases                    

拡張機能の基本情報

名前 SlackDeck SlackDeck
ID cocnkjpcbmoopfpmogblnjpjdfcaohod
公式URL https://chromewebstore.google.com/detail/slackdeck/cocnkjpcbmoopfpmogblnjpjdfcaohod
説明 Arrange channels side-by-side
ファイルサイズ 390 KB
インストール数 90
現在のバージョン 1.0.1
最終更新日 2023-05-31
公開日 2021-12-01
開発者 Yuta Yamamoto
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/yamamoto-yuta/slack-deck
対応言語 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SlackDeck",
    "description": "Arrange channels side-by-side",
    "version": "1.0.1",
    "action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/eventPage.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.slack.com\/client\/*"
            ],
            "js": [
                "js\/contents.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/github.com\/yamamoto-yuta\/slack-deck"
}