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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Monogon SE และคุณลักษณะหลักของมันคือ "This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Always Show Slack Workspace Switcher Sidebar

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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\/*"
            ]
        }
    ]
}