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是由Monogon SE開發的Chrome擴展程式,該擴展的主要功能是“This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.”。

擴展截圖

screenshot

下載Always Show Slack Workspace Switcher Sidebar擴展crx文件

下載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 Always Show Slack Workspace Switcher Sidebar
ID diebigeemhcipelnipggjihcmgjlacge
官方網址 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\/*"
            ]
        }
    ]
}