Slack Toggle Sidebar
Toggle show or hide Slack's channel sidebar
Slack Toggle Sidebarとは何ですか?
Slack Toggle Sidebarはhttps://marlosoft.netによって開発されたChromeの拡張機能で、その主な機能は「Toggle show or hide Slack's channel sidebar」です。
拡張機能のスクリーンショット
Slack Toggle Sidebar拡張機能のCRXファイルをダウンロード
Slack Toggle Sidebar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Toggle Slack's sidebar display
- Show or hide channel sidebar
- Changed shortcut to Ctrl+Shift+S 拡張機能の基本情報
| 名前 | |
| ID | falbhdlejfolflphlfnkkpdmialebkdl |
| 公式URL | https://chromewebstore.google.com/detail/slack-toggle-sidebar/falbhdlejfolflphlfnkkpdmialebkdl |
| 説明 | Toggle show or hide Slack's channel sidebar |
| ファイルサイズ | 21.2 KB |
| インストール数 | 182 |
| 現在のバージョン | 4.1.0 |
| 最終更新日 | 2020-06-06 |
| 公開日 | 2020-06-06 |
| 評価 | 2.92/5 合計 13 レビュー |
| 開発者 | https://marlosoft.net |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/marlosoft/slack-toggle-sidebar |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Slack Toggle Sidebar",
"version": "4.1.0",
"manifest_version": 2,
"short_name": "slack-toggle-sidebar",
"description": "Toggle show or hide Slack's channel sidebar",
"icons": {
"128": "icon\/128.png"
},
"permissions": [
"https:\/\/*.slack.com\/*"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/*.slack.com\/*"
],
"js": [
"js\/content_script.js"
],
"css": [
"css\/app.css"
]
}
],
"web_accessible_resources": [
"css\/app.css"
],
"background": {
"persistent": true,
"scripts": [
"js\/background.js"
]
},
"commands": {
"toggle-slack-sidebar": {
"description": "Toggle show or hide Slack's channel sidebar",
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "MacCtrl+Shift+S"
}
}
}
} | |