dSaver - Export Discord user list to CSV

Extract all discord members, contains userid, username, discriminator, roles, activity, avatar, join date, save as CSV/EXCEL/JSON.

What is dSaver - Export Discord user list to CSV?

dSaver - Export Discord user list to CSV is a Chrome extension developed by moska, and its main feature is "Extract all discord members, contains userid, username, discriminator, roles, activity, avatar, join date, save as CSV/EXCEL/JSON.".

Extension Screenshots

screenshot
screenshot

Download dSaver - Export Discord user list to CSV Extension CRX File

Download dSaver - Export Discord user list to CSV extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        One click to export all discord members of Discord server.

# v1.1.3 UPDATE
✓ Fixed issue with exporting only 1000 users in admin mode. You can now extract all your own Discord server members.

# FEATURES

✓ Export user list from Discord server.
✓ Download users of reactions.
✓ Save and download the member list in CSV/EXCEL/JSON format.

# COLUMNS

- user id
- username
- #discriminator
- roles
- activity
- avatar
- status
- joined at time

# HOW TO USE

Visit any Discord server, click the extension then click "Export" button to start.

# SUPPORT

If you have any questions, please keep in touch via [email protected].                    

Extension Basic Information

Name dSaver - Export Discord user list to CSV dSaver - Export Discord user list to CSV
ID fpiffaomkpnhmldgjbcinoikplpjnpca
Official URL https://chromewebstore.google.com/detail/dsaver-export-discord-use/fpiffaomkpnhmldgjbcinoikplpjnpca
Description Extract all discord members, contains userid, username, discriminator, roles, activity, avatar, join date, save as CSV/EXCEL/JSON.
File Size 726 KB
Installation Count 808
Current Version 1.1.3
Last Updated 2024-02-28
Publish Date 2023-03-26
Rating 4.00/5 Total 13 Ratings
Developer moska
Email [email protected]
Payment Type free
Extension Website https://discord-user-exporter.extensionsfox.com
Privacy Policy Page URL https://discordsaver.extensionsfox.com/privacy
Supported Languages 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.1.3",
    "homepage_url": "https:\/\/discord-user-exporter.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"
            ],
            "css": [
                ".\/assets\/reaction.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css",
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}