From xactions
Monitors X/Twitter follower changes via browser console scripts. Detects unfollowers, tracks new followers with alerts, analyzes growth, demographics, and ratios on public accounts.
npx claudepluginhub nirholas/xactionsThis skill uses the workspace's default tool permissions.
Browser console scripts for tracking follower changes on X/Twitter. All scripts use localStorage for persistent snapshot comparison.
Runs browser console JavaScript scripts for mass unfollowing on X/Twitter: all accounts, non-followers with logging, smart whitelists, unfollower detection, ratio management. For cleaning following lists and optimizing ratios.
Extracts X/Twitter data via Xquik API: tweet/user search, follower extraction, engagement metrics, monitoring, webhooks, giveaways, 19 bulk tools. For social media analysis and automation.
CLI for X (Twitter) API v2: fetch following lists, diff snapshots for follow changes, get likes/bookmarks/latest posts, screenshot tweets with Playwright.
Share bugs, ideas, or general feedback.
Browser console scripts for tracking follower changes on X/Twitter. All scripts use localStorage for persistent snapshot comparison.
| Goal | File | Navigate to |
|---|---|---|
| Detect who unfollowed you | src/detectUnfollowers.js | x.com/USERNAME/followers |
| Monitor any public account | src/monitorAccount.js | x.com/TARGET/followers |
| Continuous monitoring + alerts | src/continuousMonitor.js | x.com/USERNAME/followers |
| New follower tracking + welcome | src/newFollowersAlert.js | x.com/USERNAME/followers |
| Follower growth over time | src/followerGrowthTracker.js | x.com/USERNAME/followers |
| Follower demographics | src/audienceDemographics.js | x.com/USERNAME/followers |
| Audit follower quality | src/auditFollowers.js | x.com/USERNAME/followers |
| Follow ratio management | src/followRatioManager.js | x.com/USERNAME |
All scripts use the same snapshot-compare pattern:
Compares follower snapshots. Auto-downloads unfollowers as .txt file. Simple two-run workflow: paste once to baseline, paste again later to detect changes.
Works on ANY public account (not just yours). Tracks both followers and following list changes. Downloads removed accounts list.
Long-running script with auto-refresh on interval (default: 5 minutes). Sends browser Notification API alerts and plays Web Audio API sounds on changes. Tab must stay open.
Tracks new followers with display names. Generates welcome message templates. Also reports unfollowers as secondary output.
Records follower count snapshots over time with timestamps. Calculates daily/weekly/monthly growth rates. Projects future milestones. Visual growth chart in console.
Controls: XActions.track(), XActions.history(), XActions.project(target)
Scrapes follower profiles and classifies by niche, account size, bot likelihood, and verified status. Visual distribution charts.
Navigate to profile page. Monitors follower/following ratio with letter grades. Generates improvement plans.
Controls: XActions.track(), XActions.plan(), XActions.history()
| Script | localStorage Key |
|---|---|
| detectUnfollowers | xactions_my_followers |
| monitorAccount | xactions_monitor_{username}_{type} |
| newFollowersAlert | xactions_new_followers |
| followerGrowthTracker | xactions_follower_growth |
| followRatioManager | xactions_ratio_history |
x.com/USERNAME/followers in a pinned tabsrc/continuousMonitor.js — it auto-refreshes every 5 minutessrc/followerGrowthTracker.js -> XActions.track() to log this weeksrc/followRatioManager.js -> XActions.track() for ratio snapshotsrc/auditFollowers.js to check for new bot followerssrc/audienceDemographics.js to verify audience qualitylocalStorage.removeItem('xactions_my_followers')
localStorage.removeItem('xactions_follower_growth')
localStorage.removeItem('xactions_ratio_history')
continuousMonitor.js requires the tab to stay open (Chrome throttles background timers)