Slack Printer

elegantly export slack messages

Cos'è Slack Printer?

Slack Printer è un'estensione di Chrome sviluppata da https://slackext.com, e la sua funzione principale è "elegantly export slack messages".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Slack Printer

Scarica i file di estensione Slack Printer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Slack Printer Slack Printer
ID pmoidapkjjlhcdbdjojaekbdlkdjjoab
URL Ufficiale https://chromewebstore.google.com/detail/slack-printer/pmoidapkjjlhcdbdjojaekbdlkdjjoab
Descrizione elegantly export slack messages
Dimensione del File 1.06 MB
Conteggio Installazioni 1,271
Versione Corrente 1.10.0
Ultimo Aggiornamento 2022-07-21
Data di Pubblicazione 2020-05-27
Valutazione 2.21/5 Totale 19 Valutazioni
Sviluppatore https://slackext.com
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://slackext.com/printer
URL della Pagina di Aiuto https://slackext.com/printer
Lingue Supportate 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:;"
    }
}