Slack Printer

elegantly export slack messages

Slack Printerとは何ですか?

Slack Printerはhttps://slackext.comによって開発されたChromeの拡張機能で、その主な機能は「elegantly export slack messages」です。

拡張機能のスクリーンショット

screenshot

Slack Printer拡張機能のCRXファイルをダウンロード

Slack Printer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Slack Printer Slack Printer
ID pmoidapkjjlhcdbdjojaekbdlkdjjoab
公式URL https://chromewebstore.google.com/detail/slack-printer/pmoidapkjjlhcdbdjojaekbdlkdjjoab
説明 elegantly export slack messages
ファイルサイズ 1.06 MB
インストール数 1,271
現在のバージョン 1.10.0
最終更新日 2022-07-21
公開日 2020-05-27
評価 2.21/5 合計 19 レビュー
開発者 https://slackext.com
Eメール [email protected]
支払い方法 in_app
拡張機能のウェブサイト https://slackext.com/printer
ヘルプページのURL https://slackext.com/printer
対応言語 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:;"
    }
}