🧵 Post Thread
Compose and publish a multi-tweet thread on X/Twitter.
📋 What It Does
- Opens the compose dialog
- Types the first tweet
- Clicks "+" to add subsequent tweets
- Types each tweet in sequence
- Posts the entire thread at once
🌐 Browser Console Script
Steps:
- Go to x.com
- Edit the thread content in CONFIG
- Set
dryRun = falseto post - Open console (F12) and paste
src/postThread.js
Configuration:
const CONFIG = {
thread: [
'First tweet of my thread 🧵',
'Second tweet with more details...',
'Third tweet continues the story.',
'Final tweet wraps it up! 🎉',
],
delayBetweenTweets: 2000,
dryRun: true,
};
✅ Validation
The script validates before posting:
- Each tweet must be ≤ 280 characters
- Shows character count per tweet in preview
- Dry-run mode lets you review without posting
📁 Related Scripts
| Script | File | Purpose |
|---|---|---|
| Post Thread | src/postThread.js |
Multi-tweet thread |
| Schedule Posts | src/schedulePosts.js |
Queue future posts |
| Create Poll | src/createPoll.js |
Create poll tweets |
| Auto Repost | src/autoRepost.js |
Auto-retweet by filter |
⚠️ Notes
- Posts are published all at once as a connected thread
- Double-check content in dry-run mode before posting
- If the script fails mid-thread, the compose dialog stays open for manual completion
⚡ Ready to try Post Thread?
XActions is 100% free and open-source. No API keys, no fees, no signup.
Browse All Scripts