Always Show Slack Workspace Switcher Sidebar
This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.
Cos'è Always Show Slack Workspace Switcher Sidebar?
Always Show Slack Workspace Switcher Sidebar è un'estensione di Chrome sviluppata da Monogon SE, e la sua funzione principale è "This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Always Show Slack Workspace Switcher Sidebar
Scarica i file di estensione Always Show Slack Workspace Switcher 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
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). Informazioni di Base sull'Estensione
| Nome | |
| ID | diebigeemhcipelnipggjihcmgjlacge |
| URL Ufficiale | https://chromewebstore.google.com/detail/always-show-slack-workspa/diebigeemhcipelnipggjihcmgjlacge |
| Descrizione | This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser. |
| Dimensione del File | 7.63 KB |
| Conteggio Installazioni | 488 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2021-02-06 |
| Data di Pubblicazione | 2021-02-05 |
| Valutazione | 5.00/5 Totale 6 Valutazioni |
| Sviluppatore | Monogon SE |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/leoluk/slack-workspace-sidebar |
| Lingue Supportate | 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\/*"
]
}
]
} | |