Slack Toggle Sidebar
Toggle show or hide Slack's channel sidebar
What is Slack Toggle Sidebar?
Slack Toggle Sidebar is a Chrome extension developed by https://marlosoft.net, and its main feature is "Toggle show or hide Slack's channel sidebar".
Extension Screenshots
Download Slack Toggle Sidebar Extension CRX File
Download Slack Toggle 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
Toggle Slack's sidebar display - Show or hide channel sidebar - Changed shortcut to Ctrl+Shift+S
Extension Basic Information
Name | Slack Toggle Sidebar |
ID | falbhdlejfolflphlfnkkpdmialebkdl |
Official URL | https://chromewebstore.google.com/detail/slack-toggle-sidebar/falbhdlejfolflphlfnkkpdmialebkdl |
Description | Toggle show or hide Slack's channel sidebar |
File Size | 21.2 KB |
Installation Count | 182 |
Current Version | 4.1.0 |
Last Updated | 2020-06-06 |
Publish Date | 2020-06-06 |
Rating | 2.92/5 Total 13 Ratings |
Developer | https://marlosoft.net |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/marlosoft/slack-toggle-sidebar |
Supported Languages | 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" } } } } |