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はMonogon SEによって開発されたChromeの拡張機能で、その主な機能は「This extension spoofs the user agent to trick Slack into showing its workspace switcher in a browser.」です。
拡張機能のスクリーンショット
Always Show Slack Workspace Switcher Sidebar拡張機能のCRXファイルをダウンロード
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). 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
}
]
} | |