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 là gì?

Always Show Slack Workspace Switcher Sidebar là một tiện ích mở rộng Chrome được phát triển bởi Monogon SE, và tính năng chính của nó là "This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Always Show Slack Workspace Switcher Sidebar

Tải xuống các tệp mở rộng Always Show Slack Workspace Switcher Sidebar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Always Show Slack Workspace Switcher Sidebar Always Show Slack Workspace Switcher Sidebar
ID diebigeemhcipelnipggjihcmgjlacge
URL Chính Thức https://chromewebstore.google.com/detail/always-show-slack-workspa/diebigeemhcipelnipggjihcmgjlacge
Mô tả This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.
Kích Thước Tệp 7.63 KB
Số Lần Cài Đặt 488
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-02-06
Ngày Phát Hành 2021-02-05
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Monogon SE
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/leoluk/slack-workspace-sidebar
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}