Slack Printer

elegantly export slack messages

Slack Printer là gì?

Slack Printer là một tiện ích mở rộng Chrome được phát triển bởi https://slackext.com, và tính năng chính của nó là "elegantly export slack messages".

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

screenshot

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

Tải xuống các tệp mở rộng Slack Printer 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

                        Export the slack channel messages into markdown(md), image, html, pdf files, for any public, private or IM channels.

2022-07-12: for new Slack Web apps, make more stable! 🚀

2020-05-27: We are caring privacy!

Support :
> 1. export the markdown (.md) or image (.png) files.
> 2. only export starred message
> 2. when export, select export channel topics and titles or not;
> 3. when export, date/user/time can be ignored or not.
> 5. offline, secure enough.

Find more tools in https://SlackExt.com                    

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

Tên Slack Printer Slack Printer
ID pmoidapkjjlhcdbdjojaekbdlkdjjoab
URL Chính Thức https://chromewebstore.google.com/detail/slack-printer/pmoidapkjjlhcdbdjojaekbdlkdjjoab
Mô tả elegantly export slack messages
Kích Thước Tệp 1.06 MB
Số Lần Cài Đặt 1,271
Phiên Bản Hiện Tại 1.10.0
Cập Nhật Lần Cuối 2022-07-21
Ngày Phát Hành 2020-05-27
Đánh Giá 2.21/5 Tổng số 19 Đánh Giá
Nhà Phát Triển https://slackext.com
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://slackext.com/printer
URL Trang Trợ Giúp https://slackext.com/printer
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.10.0",
    "name": "Slack Printer",
    "manifest_version": 3,
    "description": "elegantly export slack messages",
    "action": {
        "default_title": "Slack Printer",
        "default_popup": "printer-popup.html"
    },
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/inject.bundle.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.bundle.js"
    },
    "content_scripts": [
        {
            "persistent": true,
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "js\/content.bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/slackext.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; connect-src https:\/\/slackext.com https:\/\/ssl.google-analytics.com\/; style-src * 'unsafe-inline' 'self' blob:; img-src * 'self' data: https:;"
    }
}