Slack Toggle Sidebar
Toggle show or hide Slack's channel sidebar
Co to jest Slack Toggle Sidebar?
Slack Toggle Sidebar to rozszerzenie Chrome opracowane przez https://marlosoft.net, a jego główną funkcją jest „Toggle show or hide Slack's channel sidebar”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Slack Toggle Sidebar
Pobierz pliki rozszerzeń Slack Toggle Sidebar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Toggle Slack's sidebar display - Show or hide channel sidebar - Changed shortcut to Ctrl+Shift+S
Podstawowe informacje o rozszerzeniu
Nazwa | Slack Toggle Sidebar |
ID | falbhdlejfolflphlfnkkpdmialebkdl |
Oficjalny URL | https://chromewebstore.google.com/detail/slack-toggle-sidebar/falbhdlejfolflphlfnkkpdmialebkdl |
Opis | Toggle show or hide Slack's channel sidebar |
Rozmiar pliku | 21.2 KB |
Liczba instalacji | 182 |
Aktualna Wersja | 4.1.0 |
Ostatnia Aktualizacja | 2020-06-06 |
Data Publikacji | 2020-06-06 |
Ocena | 2.92/5 Łącznie 13 Oceny |
Deweloper | https://marlosoft.net |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/marlosoft/slack-toggle-sidebar |
Obsługiwane Języki | 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" } } } } |