Always Show Slack Workspace Switcher Sidebar

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

Co to jest Always Show Slack Workspace Switcher Sidebar?

Always Show Slack Workspace Switcher Sidebar to rozszerzenie Chrome opracowane przez Monogon SE, a jego główną funkcją jest „This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Always Show Slack Workspace Switcher Sidebar

Pobierz pliki rozszerzeń Always Show Slack Workspace Switcher Sidebar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Always Show Slack Workspace Switcher Sidebar Always Show Slack Workspace Switcher Sidebar
ID diebigeemhcipelnipggjihcmgjlacge
Oficjalny URL https://chromewebstore.google.com/detail/always-show-slack-workspa/diebigeemhcipelnipggjihcmgjlacge
Opis This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.
Rozmiar pliku 7.63 KB
Liczba instalacji 488
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-02-06
Data Publikacji 2021-02-05
Ocena 5.00/5 Łącznie 6 Oceny
Deweloper Monogon SE
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/leoluk/slack-workspace-sidebar
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}