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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
}
}
}
} | |