Slack Toggle Sidebar

Toggle show or hide Slack's channel sidebar

Cos'è Slack Toggle Sidebar?

Slack Toggle Sidebar è un'estensione di Chrome sviluppata da https://marlosoft.net, e la sua funzione principale è "Toggle show or hide Slack's channel sidebar".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Slack Toggle Sidebar

Scarica i file di estensione Slack Toggle Sidebar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Toggle Slack's sidebar display
- Show or hide channel sidebar
- Changed shortcut to Ctrl+Shift+S                    

Informazioni di Base sull'Estensione

Nome Slack Toggle Sidebar Slack Toggle Sidebar
ID falbhdlejfolflphlfnkkpdmialebkdl
URL Ufficiale https://chromewebstore.google.com/detail/slack-toggle-sidebar/falbhdlejfolflphlfnkkpdmialebkdl
Descrizione Toggle show or hide Slack's channel sidebar
Dimensione del File 21.2 KB
Conteggio Installazioni 182
Versione Corrente 4.1.0
Ultimo Aggiornamento 2020-06-06
Data di Pubblicazione 2020-06-06
Valutazione 2.92/5 Totale 13 Valutazioni
Sviluppatore https://marlosoft.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/marlosoft/slack-toggle-sidebar
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slack Toggle Sidebar",
    "version": "4.1.0",
    "manifest_version": 2,
    "short_name": "slack-toggle-sidebar",
    "description": "Toggle show or hide Slack's channel sidebar",
    "icons": {
        "128": "icon\/128.png"
    },
    "permissions": [
        "https:\/\/*.slack.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "css": [
                "css\/app.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/app.css"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "commands": {
        "toggle-slack-sidebar": {
            "description": "Toggle show or hide Slack's channel sidebar",
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            }
        }
    }
}