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開發的Chrome擴展程式,該擴展的主要功能是“A extension to export Discord chat messages to CSV/Excel/JSON/HTML, support both DM (private chat) and channel.”。

擴展截圖

screenshot
screenshot

下載DiscordSaver - Export Discord Chat Messages擴展crx文件

下載DiscordSaver - Export Discord Chat Messages擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        # 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
官方網址 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'"
    }
}