dTools - member list saver for Discord
To export list of members that contains username, roles, activity, avatar, join date from Discord servers, and save as csv/xlsx
dTools - member list saver for Discord란 무엇입니까?
dTools - member list saver for Discord은(는) automatismworks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "To export list of members that contains username, roles, activity, avatar, join date from Discord servers, and save as csv/xlsx"입니다.
확장 프로그램 스크린샷
dTools - member list saver for Discord 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of sorting out each member in your discord server one by one? So this is the perfect tool for you, it can export list of members of your discord server in a few clicks. ---------- Features -------- - Export member id, username#discriminator. - Export member roles. - Export & download avatar pictures. - Export member activity. - Export member join time. ---------- Get started -------- 1. Install the extension. 2. Open a new tab and visit any discord server. 3. Click the extension icon then click 'GO'. 4. The downloading of csv/xlsx starts automatically when data loading is done, or you can click the button to save it manually. ---------- Terms of use -------- https://automatism.works/dtools/terms-of-use.html ---------- Support -------- [email protected]
확장 프로그램 기본 정보
이름 | dTools - member list saver for Discord |
ID | delmpfioapnibhcbepefgjofgdlifbdh |
공식 URL | https://chromewebstore.google.com/detail/dtools-member-list-saver/delmpfioapnibhcbepefgjofgdlifbdh |
설명 | To export list of members that contains username, roles, activity, avatar, join date from Discord servers, and save as csv/xlsx |
파일 크기 | 1.42 MB |
설치 횟수 | 1,524 |
현재 버전 | 1.0.5 |
최근 업데이트 | 2022-12-09 |
출시 날짜 | 2022-02-21 |
평점 | 3.57/5 총 14 개의 평점 |
개발자 | automatismworks |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://automatism.works/dtools/ |
개인정보 보호 정책 페이지 URL | http://automatism.works/dtools/privacy-policy.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "dTools - member list saver for Discord", "description": "To export list of members that contains username, roles, activity, avatar, join date from Discord servers, and save as csv\/xlsx", "version": "1.0.5", "manifest_version": 3, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "action": { "default_title": "dTools", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/discord.com\/*" ], "js": [ "content.js" ], "css": [ "content_inject.css" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/automatism.works\/" ], "permissions": [ "activeTab", "storage", "downloads", "alarms" ] } |