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 - это расширение Chrome, разработанное Monogon SE, и его основная функция - "This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.".
Снимки экрана расширения
Скачать файл CRX расширения Always Show Slack Workspace Switcher Sidebar
Скачайте файлы расширений 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).
Основная информация о расширении
Название | Always Show Slack Workspace Switcher Sidebar |
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\/*" ] } ] } |