Always Show Slack Workspace Switcher Sidebar

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

¿Qué es Always Show Slack Workspace Switcher Sidebar?

Always Show Slack Workspace Switcher Sidebar es una extensión de Chrome desarrollada por Monogon SE, y su función principal es "This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Always Show Slack Workspace Switcher Sidebar

Descarga archivos de extensión Always Show Slack Workspace Switcher Sidebar en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre 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
Descripción This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.
Tamaño del Archivo 7.63 KB
Cantidad de Instalaciones 488
Versión Actual 1.0
Última Actualización 2021-02-06
Fecha de Publicación 2021-02-05
Calificación 5.00/5 Total de 6 Calificaciones
Desarrollador Monogon SE
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/leoluk/slack-workspace-sidebar
Idiomas Soportados 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\/*"
            ]
        }
    ]
}