Sort any X (Twitter) profile's Followers or Following list by follower count for free, right in your browser.
Note: It costs $5 (one-time) to publish on the Chrome Web Store and $100/year for Safari. Until then, please install manually using the instructions below.
- Download the latest
sort-x-chromium-vX.X.X.zipfrom Releases - Unzip it anywhere
- Go to
chrome://extensions(oredge://extensions) - Enable Developer mode (top-right toggle)
- Click Load unpacked and select the unzipped folder
- Go to any X profile's Followers or Following page
- Click the ⬇ button to auto-scroll and load all users
- Click Sort to open the ranked list sorted by follower count
sort-x/
├── src/ # Shared source (all browsers)
│ ├── content.js # UI + sort panel (isolated world)
│ ├── inject.js # Fetch/XHR interceptor (main world)
│ ├── styles.css
│ ├── popup.html
│ ├── popup.css
│ └── icons/
├── browsers/
│ └── chromium/
│ └── manifest.json # Manifest V3 - Chromium-specific
├── dist/ # Built output (gitignored)
│ └── chromium/ # Load this folder as an "unpacked extension"
├── build.js # Build script (no dependencies)
├── package.json
└── .github/
└── workflows/
└── release.yml # Auto-release on git tag push
# Build all targets
node build.js
# Build chromium only
node build.js --target chromiumThen load dist/chromium/ as an unpacked extension.
Push a version tag to trigger a GitHub Release with all browser zips attached:
git tag v1.0.5
git push origin v1.0.5The workflow builds, zips, and publishes automatically.