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