Always Show Slack Workspace Switcher Sidebar

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

Apa itu Always Show Slack Workspace Switcher Sidebar?

Always Show Slack Workspace Switcher Sidebar adalah ekstensi Chrome yang dikembangkan oleh Monogon SE, dan fitur utamanya adalah "This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Always Show Slack Workspace Switcher Sidebar

Unduh file ekstensi Always Show Slack Workspace Switcher Sidebar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Always Show Slack Workspace Switcher Sidebar Always Show Slack Workspace Switcher Sidebar
ID diebigeemhcipelnipggjihcmgjlacge
URL Resmi https://chromewebstore.google.com/detail/always-show-slack-workspa/diebigeemhcipelnipggjihcmgjlacge
Deskripsi This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.
Ukuran File 7.63 KB
Jumlah Instalasi 488
Versi Saat Ini 1.0
Terakhir Diperbarui 2021-02-06
Tanggal Publikasi 2021-02-05
Penilaian 5.00/5 Total 6 Penilaian
Pengembang Monogon SE
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/leoluk/slack-workspace-sidebar
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}