My Slack Workspaces

Easily access multiple slack workspaces from your browser.

My Slack Workspaces là gì?

My Slack Workspaces là một tiện ích mở rộng Chrome được phát triển bởi https://msramalho.github.io, và tính năng chính của nó là "Easily access multiple slack workspaces from your browser.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng My Slack Workspaces

Tải xuống các tệp mở rộng My Slack Workspaces dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        A simple browser extension to easily access multiple slack workspaces.

Available on Chrome webstore and Firefox addons                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên My Slack Workspaces My Slack Workspaces
ID gbpffheebbifdigfogmodlfidmekacnd
URL Chính Thức https://chromewebstore.google.com/detail/my-slack-workspaces/gbpffheebbifdigfogmodlfidmekacnd
Mô tả Easily access multiple slack workspaces from your browser.
Kích Thước Tệp 45.85 KB
Số Lần Cài Đặt 320
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2020-09-12
Ngày Phát Hành 2020-01-12
Nhà Phát Triển https://msramalho.github.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/msramalho/my-slack-workspaces
URL Trang Trợ Giúp https://github.com/msramalho/my-slack-workspaces/issues
URL Trang Chính Sách Bảo Mật https://github.com/msramalho/SigTools/blob/master/privacy_policy.md
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}