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.”。

扩展截图

screenshot

下载Xtotalz扩展crx文件

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