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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον moska, και η κύρια λειτουργία του είναι "A extension to export Discord chat messages to CSV/Excel/JSON/HTML, support both DM (private chat) and channel.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης DiscordSaver - Export Discord Chat Messages
Λήψη αρχείων επέκτασης 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 |
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": [ " |