DiscordSaver - Export Discord Chat Messages

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

DiscordSaver - Export Discord Chat Messages क्या है?

DiscordSaver - Export Discord Chat Messages moska द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A extension to export Discord chat messages to CSV/Excel/JSON/HTML, support both DM (private chat) and channel."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DiscordSaver - Export Discord Chat Messages एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        # 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].                    

एक्सटेंशन की मूल जानकारी

नाम DiscordSaver - Export Discord Chat Messages DiscordSaver - Export Discord Chat Messages
ID enoiplhodnnpjiecjembkobephpjanpe
आधिकारिक URL https://chromewebstore.google.com/detail/discordsaver-export-disco/enoiplhodnnpjiecjembkobephpjanpe
विवरण A extension to export Discord chat messages to CSV/Excel/JSON/HTML, support both DM (private chat) and channel.
फ़ाइल का आकार 679 KB
स्थापना संख्या 236
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2023-12-07
प्रकाशन तिथि 2023-03-23
रेटिंग 2.00/5 कुल 3 रेटिंग्स
डेवलपर moska
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://discordsaver.extensionsfox.com
गोपनीयता नीति पृष्ठ URL https://discordsaver.extensionsfox.com/privacy
समर्थित भाषाएँ 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'"
    }
}