Always Show Slack Workspace Switcher Sidebar
This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.
什么是Always Show Slack Workspace Switcher Sidebar?
Always Show Slack Workspace Switcher Sidebar是由Monogon SE开发的Chrome扩展程序,该扩展的主要功能是“This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.”。
扩展截图
下载Always Show Slack Workspace Switcher Sidebar扩展crx文件
下载Always Show Slack Workspace Switcher Sidebar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Slack's web client has a perfectly fine workspace switcher sidebar, but they only show it to you on a Chromebook (it would appear that they're lawful evil and really want you to download their native Electron client instead, web user experience be damned). 扩展基本信息
| 名称 | |
| ID | diebigeemhcipelnipggjihcmgjlacge |
| 官方URL | https://chromewebstore.google.com/detail/always-show-slack-workspa/diebigeemhcipelnipggjihcmgjlacge |
| 简介 | This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser. |
| 文件大小 | 7.63 KB |
| 安装次数 | 488 |
| 当前版本 | 1.0 |
| 更新时间 | 2021-02-06 |
| 上架时间 | 2021-02-05 |
| 评分 | 5.00/5 共6次评分 |
| 开发者 | Monogon SE |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/leoluk/slack-workspace-sidebar |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Always Show Slack Workspace Switcher Sidebar",
"version": "1.0",
"description": "This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"*:\/\/app.slack.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"*.js"
],
"matches": [
"*:\/\/app.slack.com\/*"
]
}
]
} | |