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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
    }
}