Always Show Slack Workspace Switcher Sidebar
This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.
What is Always Show Slack Workspace Switcher Sidebar?
Always Show Slack Workspace Switcher Sidebar is a Chrome extension developed by Monogon SE, and its main feature is "This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.".
Extension Screenshots
Download Always Show Slack Workspace Switcher Sidebar Extension CRX File
Download Always Show Slack Workspace Switcher Sidebar 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'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).
Extension Basic Information
Name | Always Show Slack Workspace Switcher Sidebar |
ID | diebigeemhcipelnipggjihcmgjlacge |
Official URL | https://chromewebstore.google.com/detail/always-show-slack-workspa/diebigeemhcipelnipggjihcmgjlacge |
Description | This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser. |
File Size | 7.63 KB |
Installation Count | 488 |
Current Version | 1.0 |
Last Updated | 2021-02-06 |
Publish Date | 2021-02-05 |
Rating | 5.00/5 Total 6 Ratings |
Developer | Monogon SE |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/leoluk/slack-workspace-sidebar |
Supported Languages | 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\/*" ] } ] } |