My Slack Workspaces
Easily access multiple slack workspaces from your browser.
What is My Slack Workspaces?
My Slack Workspaces is a Chrome extension developed by https://msramalho.github.io, and its main feature is "Easily access multiple slack workspaces from your browser.".
Extension Screenshots
Download My Slack Workspaces Extension CRX File
Download My Slack Workspaces extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A simple browser extension to easily access multiple slack workspaces. Available on Chrome webstore and Firefox addons
Extension Basic Information
Name | My Slack Workspaces |
ID | gbpffheebbifdigfogmodlfidmekacnd |
Official URL | https://chromewebstore.google.com/detail/my-slack-workspaces/gbpffheebbifdigfogmodlfidmekacnd |
Description | Easily access multiple slack workspaces from your browser. |
File Size | 45.85 KB |
Installation Count | 320 |
Current Version | 1.0.4 |
Last Updated | 2020-09-12 |
Publish Date | 2020-01-12 |
Developer | https://msramalho.github.io |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/msramalho/my-slack-workspaces |
Help Page URL | https://github.com/msramalho/my-slack-workspaces/issues |
Privacy Policy Page URL | https://github.com/msramalho/SigTools/blob/master/privacy_policy.md |
Supported Languages | 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" ] } } |