Always Show Slack Workspace Switcher Sidebar

This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.

O que é Always Show Slack Workspace Switcher Sidebar?

Always Show Slack Workspace Switcher Sidebar é uma extensão do Chrome desenvolvida por Monogon SE, e sua principal característica é "This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Always Show Slack Workspace Switcher Sidebar

Baixe arquivos de extensão Always Show Slack Workspace Switcher Sidebar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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).                    

Informações Básicas da Extensão

Nome Always Show Slack Workspace Switcher Sidebar Always Show Slack Workspace Switcher Sidebar
ID diebigeemhcipelnipggjihcmgjlacge
URL Oficial https://chromewebstore.google.com/detail/always-show-slack-workspa/diebigeemhcipelnipggjihcmgjlacge
Descrição This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.
Tamanho do Arquivo 7.63 KB
Contagem de Instalações 488
Versão Atual 1.0
Última Atualização 2021-02-06
Data de Publicação 2021-02-05
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor Monogon SE
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/leoluk/slack-workspace-sidebar
Idiomas Suportados 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\/*"
            ]
        }
    ]
}