Discord Exporter - Backup discord chat logs

A useful tool to export Discord chat logs to Excel xlsx/csv and batch download attachments with one click.

Discord Exporter - Backup discord chat logs란 무엇입니까?

Discord Exporter - Backup discord chat logs은(는) EchoWebBot Studio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A useful tool to export Discord chat logs to Excel xlsx/csv and batch download attachments with one click."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Discord Exporter - Backup discord chat logs 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        DiscordExporter can be used to export Discord channel message history to Excel XLSX/CSV or HTML and download chat file attachments in bulk, it is suitable for direct messages, group messages and server channels and  threads and is a useful tool for backing up Discord chat messages.

🎨 Features
✓ Export discord chat logs to XLSX,CSV,HTML
✓ Bulk download of chat file attachments(images, videos, audio, pdf, etc.)
✓ 2x faster than other export tools
✓ Continued free updates

🔒 Data Privacy
All data is processed in your local computer, it never passes through our web server and no one knows what you have saved.

👋 Contact
If you have any issues, feel free to contact [email protected]                    

확장 프로그램 기본 정보

이름 Discord Exporter - Backup discord chat logs Discord Exporter - Backup discord chat logs
ID fhpffpldicgekaenjieffeonehhijhjg
공식 URL https://chromewebstore.google.com/detail/discord-exporter-backup-d/fhpffpldicgekaenjieffeonehhijhjg
설명 A useful tool to export Discord chat logs to Excel xlsx/csv and batch download attachments with one click.
파일 크기 622 KB
설치 횟수 1,314
현재 버전 1.1.0
최근 업데이트 2023-10-06
출시 날짜 2022-09-03
평점 3.38/5 총 13 개의 평점
개발자 EchoWebBot Studio
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://echobot.dev/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "homepage_url": "https:\/\/discordexporter.echobot.dev",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "identity",
        "downloads"
    ],
    "host_permissions": [
        "https:\/\/discord.com\/*",
        "*:\/\/*.echobot.dev\/*"
    ],
    "oauth2": {
        "client_id": "224039609085-gonm3f2kiqj5hil08q1k3bcks7c3kdq9.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "__MSG_extName__",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/discord.com\/*"
            ],
            "js": [
                "content-script-start.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/discord.com\/*"
            ],
            "js": [
                "libs\/jquery-3.6.0.min.js",
                "content-script.js"
            ],
            "css": [
                "css\/content-script.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/*.echobot.dev\/auth\/success\/discordexporter*"
            ],
            "js": [
                "auth.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "version": "1.1.0"
}