Xtotalz

A simple tool to export X followers and following data from any account.

Xtotalzคืออะไร?

Xtotalz เป็นส่วนขยายของ Chrome ที่พัฒนาโดย web3dev333 และคุณลักษณะหลักของมันคือ "A simple tool to export X followers and following data from any account."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Xtotalz

ดาวน์โหลดไฟล์ส่วนขยาย Xtotalz ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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": []
        }
    ]
}