Always Show Slack Workspace Switcher Sidebar

This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.

Qu'est-ce que Always Show Slack Workspace Switcher Sidebar ?

Always Show Slack Workspace Switcher Sidebar est une extension Chrome développée par Monogon SE, et sa fonction principale est "This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Always Show Slack Workspace Switcher Sidebar

Téléchargez les fichiers d'extension Always Show Slack Workspace Switcher Sidebar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Always Show Slack Workspace Switcher Sidebar Always Show Slack Workspace Switcher Sidebar
ID diebigeemhcipelnipggjihcmgjlacge
URL Officiel https://chromewebstore.google.com/detail/always-show-slack-workspa/diebigeemhcipelnipggjihcmgjlacge
Description This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.
Taille du Fichier 7.63 KB
Nombre d'Installations 488
Version Actuelle 1.0
Dernière Mise à Jour 2021-02-06
Date de Publication 2021-02-05
Évaluation 5.00/5 Total 6 Évaluations
Développeur Monogon SE
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/leoluk/slack-workspace-sidebar
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}