My Slack Workspaces
Easily access multiple slack workspaces from your browser.
Was ist My Slack Workspaces?
My Slack Workspaces ist eine Chrome-Erweiterung, die von https://msramalho.github.io entwickelt wurde, und ihr Hauptmerkmal ist "Easily access multiple slack workspaces from your browser.".
Erweiterungsscreenshots
My Slack Workspaces-Erweiterungs-CRX-Datei herunterladen
Laden Sie My Slack Workspaces-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A simple browser extension to easily access multiple slack workspaces.
Available on Chrome webstore and Firefox addons Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gbpffheebbifdigfogmodlfidmekacnd |
| Offizielle URL | https://chromewebstore.google.com/detail/my-slack-workspaces/gbpffheebbifdigfogmodlfidmekacnd |
| Beschreibung | Easily access multiple slack workspaces from your browser. |
| Dateigröße | 45.85 KB |
| Installationsanzahl | 320 |
| Aktuelle Version | 1.0.4 |
| Letztes Update | 2020-09-12 |
| Veröffentlichungsdatum | 2020-01-12 |
| Entwickler | https://msramalho.github.io |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/msramalho/my-slack-workspaces |
| Hilfeseite URL | https://github.com/msramalho/my-slack-workspaces/issues |
| URL der Datenschutzrichtlinien-Seite | https://github.com/msramalho/SigTools/blob/master/privacy_policy.md |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "My Slack Workspaces",
"short_name": "My Slack Workspaces",
"version": "1.0.4",
"manifest_version": 2,
"description": "Easily access multiple slack workspaces from your browser.",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"64": "icons\/icon-64.png",
"128": "icons\/icon-128.png"
},
"default_locale": "en",
"permissions": [
"tabs",
"storage",
"notifications",
"*:\/\/slack.com\/your-workspaces*",
"*:\/\/app.slack.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/slack.com\/your-workspaces*"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_start"
}
],
"browser_action": {
"default_icon": {
"32": "icons\/icon-32.png",
"64": "icons\/icon-64.png"
},
"default_title": "My Slack Workspaces",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"scripts\/livereload.js"
]
}
} | |