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 |
| 电子邮箱 | [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"
}
}
}
} | |