DiscordSaver - Export Discord Chat Messages

A extension to export Discord chat messages to CSV/Excel/JSON/HTML, support both DM (private chat) and channel.

Cos'è DiscordSaver - Export Discord Chat Messages?

DiscordSaver - Export Discord Chat Messages è un'estensione di Chrome sviluppata da moska, e la sua funzione principale è "A extension to export Discord chat messages to CSV/Excel/JSON/HTML, support both DM (private chat) and channel.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione DiscordSaver - Export Discord Chat Messages

Scarica i file di estensione DiscordSaver - Export Discord Chat Messages 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

                        # FEATURES

✓ Export chat logs from discord channel or direct messages (DM).
✓ Save and download chat messages in CSV/EXCEL/JSON/HTML format.
✓ Provide date range to quickly get the chat log you need.

# HOW TO USE

Visit any Discord channel or direct message, click the extension to select start date and end date, then click "Export".

DISCORD TOOL FAMILY
you can visit other tools on the tool menu.
✓ dSender - Send bulk DM for Discord
✓ dFriend - Bulk add friends
✓ dSaver - Export user list to CSV

# SUPPORT

If you have any questions, please keep in touch via [email protected].                    

Informazioni di Base sull'Estensione

Nome DiscordSaver - Export Discord Chat Messages DiscordSaver - Export Discord Chat Messages
ID enoiplhodnnpjiecjembkobephpjanpe
URL Ufficiale https://chromewebstore.google.com/detail/discordsaver-export-disco/enoiplhodnnpjiecjembkobephpjanpe
Descrizione A extension to export Discord chat messages to CSV/Excel/JSON/HTML, support both DM (private chat) and channel.
Dimensione del File 679 KB
Conteggio Installazioni 236
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-12-07
Data di Pubblicazione 2023-03-23
Valutazione 2.00/5 Totale 3 Valutazioni
Sviluppatore moska
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://discordsaver.extensionsfox.com
URL della Pagina della Politica sulla Privacy https://discordsaver.extensionsfox.com/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "version": "1.0.0",
    "homepage_url": "https:\/\/discordsaver.extensionsfox.com\/",
    "action": {
        "default_icon": ".\/assets\/icon-512.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "icons": {
        "16": ".\/assets\/icon-512.png",
        "48": ".\/assets\/icon-512.png",
        "128": ".\/assets\/icon-512.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.discord.com\/*"
    ],
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.discord.com\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css",
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}