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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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\/*"
            ]
        }
    ]
}