Xtotalz
A simple tool to export X followers and following data from any account.
Xtotalz란 무엇입니까?
Xtotalz은(는) web3dev333에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple tool to export X followers and following data from any account."입니다.
확장 프로그램 스크린샷
Xtotalz 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Find out the full list of followers and following on any X account. Sort the data by size of each account or other metrics. Step 1. Open Chrome extension and enter any Twitter username Step 2. Keep tab open as data is processed. You may use other tabs meanwhile. Step 3. Data is in a spreadsheet file. Sort any columns as you wish. Step 4. Large accounts (over 100k followers) may have trouble processing data, we will release a better version to accommodate if there is feedback to [email protected] Please request any features or suggestions.
확장 프로그램 기본 정보
이름 | Xtotalz |
ID | plhamjbeihdpddngmffoafmfaaehejcf |
공식 URL | https://chromewebstore.google.com/detail/xtotalz/plhamjbeihdpddngmffoafmfaaehejcf |
설명 | A simple tool to export X followers and following data from any account. |
파일 크기 | 250 KB |
설치 횟수 | 57 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2023-10-07 |
출시 날짜 | 2023-08-12 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | web3dev333 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A simple tool to export X followers and following data from any account.", "version": "0.1.3", "manifest_version": 3, "name": "Xtotalz", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" } }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ], "run_at": "document_end" } ], "permissions": [ "storage", "webRequest" ], "host_permissions": [ "*:\/\/*.twitter.com\/*" ], "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "content.styles.css" ], "matches": [] } ] } |