Slack Printer

elegantly export slack messages

ما هو Slack Printer؟

Slack Printer هو إضافة Chrome تم تطويرها بواسطة https://slackext.com، والميزة الرئيسية لها هي "elegantly export slack messages".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Slack Printer

قم بتنزيل ملفات الامتداد Slack Printer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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:;"
    }
}