Slack Printer

elegantly export slack messages

What is Slack Printer?

Slack Printer is a Chrome extension developed by https://slackext.com, and its main feature is "elegantly export slack messages".

Extension Screenshots

screenshot

Download Slack Printer Extension CRX File

Download Slack Printer 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

                        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                    

Extension Basic Information

Name Slack Printer Slack Printer
ID pmoidapkjjlhcdbdjojaekbdlkdjjoab
Official URL https://chromewebstore.google.com/detail/slack-printer/pmoidapkjjlhcdbdjojaekbdlkdjjoab
Description elegantly export slack messages
File Size 1.06 MB
Installation Count 1,271
Current Version 1.10.0
Last Updated 2022-07-21
Publish Date 2020-05-27
Rating 2.21/5 Total 19 Ratings
Developer https://slackext.com
Email [email protected]
Payment Type in_app
Extension Website https://slackext.com/printer
Help Page URL https://slackext.com/printer
Supported Languages 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:;"
    }
}