SlackDeck
Arrange channels side-by-side
What is SlackDeck?
SlackDeck is a Chrome extension developed by Yuta Yamamoto, and its main feature is "Arrange channels side-by-side".
Extension Screenshots
Download SlackDeck Extension CRX File
Download SlackDeck 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のチャンネルをカラム形式で表示させることができます。 ■機能 ・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
Extension Basic Information
Name | SlackDeck |
ID | cocnkjpcbmoopfpmogblnjpjdfcaohod |
Official URL | https://chromewebstore.google.com/detail/slackdeck/cocnkjpcbmoopfpmogblnjpjdfcaohod |
Description | Arrange channels side-by-side |
File Size | 390 KB |
Installation Count | 90 |
Current Version | 1.0.1 |
Last Updated | 2023-05-31 |
Publish Date | 2021-12-01 |
Developer | Yuta Yamamoto |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/yamamoto-yuta/slack-deck |
Supported Languages | 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" } |