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 là gì?

DiscordSaver - Export Discord Chat Messages là một tiện ích mở rộng Chrome được phát triển bởi moska, và tính năng chính của nó là "A extension to export Discord chat messages to CSV/Excel/JSON/HTML, support both DM (private chat) and channel.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DiscordSaver - Export Discord Chat Messages

Tải xuống các tệp mở rộng DiscordSaver - Export Discord Chat Messages dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DiscordSaver - Export Discord Chat Messages DiscordSaver - Export Discord Chat Messages
ID enoiplhodnnpjiecjembkobephpjanpe
URL Chính Thức https://chromewebstore.google.com/detail/discordsaver-export-disco/enoiplhodnnpjiecjembkobephpjanpe
Mô tả A extension to export Discord chat messages to CSV/Excel/JSON/HTML, support both DM (private chat) and channel.
Kích Thước Tệp 679 KB
Số Lần Cài Đặt 236
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-12-07
Ngày Phát Hành 2023-03-23
Đánh Giá 2.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển moska
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://discordsaver.extensionsfox.com
URL Trang Chính Sách Bảo Mật https://discordsaver.extensionsfox.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}