Slack Columns

Display multiple channels side by side. 複数チャンネルを並べて表示することができます。

What is Slack Columns?

Slack Columns is a Chrome extension developed by koheiyatsushiro, and its main feature is "Display multiple channels side by side. 複数チャンネルを並べて表示することができます。".

Extension Screenshots

screenshot
screenshot

Download Slack Columns Extension CRX File

Download Slack Columns extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Slackのチャンネルを並べて表示させることができます。

表示したいチャンネルのURLを登録しておくことができ、Slackのワークスペースを表示したときに登録されたチャンネルが並べて表示されます。利用中のブラウザでログイン済みのワークスペースであればどの複数のワークスペースのチャンネルを登録できます。

このエクステンションのコードは https://github.com/k8shiro/chrome_extension_slack_columns で公開されています。不具合等はこちらのissueから登録ください。

# DEVELOPER NOTE

■ ver1.0.0 
- 公開

■ ver1.0.1
- オプションページのタイトル変更
- Extensionの説明修正

■ ver1.0.2
- Extensionの説明修正                    

Extension Basic Information

Name Slack Columns Slack Columns
ID jemgmalconedknjjjbfbigecijkdnkgi
Official URL https://chromewebstore.google.com/detail/slack-columns/jemgmalconedknjjjbfbigecijkdnkgi
Description Display multiple channels side by side. 複数チャンネルを並べて表示することができます。
File Size 1.46 MB
Installation Count 194
Current Version 1.0.2
Last Updated 2020-01-14
Publish Date 2020-01-13
Developer koheiyatsushiro
Payment Type free
Privacy Policy Page URL https://github.com/k8shiro/chrome_extension_slack_columns/wiki/%E3%83%97%E3%83%A9%E3%82%A4%E3%83%90%E3%82%B7%E3%83%BC%E3%83%9D%E3%83%AA%E3%82%B7%E3%83%BC
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Slack Columns",
    "short_name": "SC",
    "version": "1.0.2",
    "description": "Display multiple channels side by side. \u8907\u6570\u30c1\u30e3\u30f3\u30cd\u30eb\u3092\u4e26\u3079\u3066\u8868\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002",
    "icons": {
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png"
        },
        "default_title": "Slack ColumnsF",
        "default_popup": "src\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.slack.com\/client\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "css": [
                "src\/content.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/github.com\/k8shiro\/chrome_extension_slack_columns"
}