Slack Printer

elegantly export slack messages

Slack Printer란 무엇입니까?

Slack Printer은(는) https://slackext.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "elegantly export slack messages"입니다.

확장 프로그램 스크린샷

screenshot

Slack Printer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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:;"
    }
}