A Chrome extension that automates video generation on Higgsfield AI by reading prompts from a CSV file and managing the generation queue.
- 📁 Load prompts from CSV file via file picker
- ⚙️ Automatic initial setup (Unlimited toggle, Visual & Sound settings, Preset selection)
- 🔄 Manage 2 parallel video generations
- ⏱️ Automatic status checks every 5 minutes
- 💾 Persistent state across browser sessions
- 🎯 Semi-automatic operation with confirmations
- 📊 Real-time progress tracking
⚠️ Error handling with failed prompt tracking
- Open Chrome and navigate to
chrome://extensions/ - Enable "Developer mode" (toggle in top-right corner)
- Click "Load unpacked"
- Select the
HIGGSFIELD CHROME EXTENSIONfolder - The extension icon will appear in your toolbar
Create a CSV file with the following format:
prompt
"Safari, small puppy barks and chases lion away, lion growls then backs off, tourists film handheld, tense natural sounds."
"Large man rides spirited horse polo-style, wildly sways as horse runs, swings mallet clumsily."- First row must be the header:
prompt - Each subsequent row contains one prompt
- Quotes around prompts are optional but recommended for prompts with commas
A template file template_prompts.csv is included in the extension folder for reference.
- Open https://higgsfield.ai/sora-trends/tiktok in Chrome
- Make sure you're logged in
- Click the extension icon in your toolbar
- Click "Choose CSV File"
- Select your CSV file
- The extension will show how many prompts were loaded
- Click the "Start" button
- The extension will:
- Toggle "Unlimited" ON
- Set Style to "Realistic"
- Set Craziness to "High"
- Click "Save Settings"
- Select "Crazy Situation" preset
- A confirmation notification will appear for the first prompt
- Click "Yes" to start generation
- The extension will manage up to 2 parallel generations
-
The popup shows:
- Completed prompts count
- Total prompts
- Active generations (0-2)
- Progress bar
- Current prompt text
- Failed prompts (if any)
-
Every 5 minutes, the extension checks generation status
-
When a generation completes, you'll get a confirmation for the next prompt
-
Failed generations are automatically skipped and logged
- Start: Begin automation (disabled until CSV is loaded)
- Pause: Pause automation (can resume later)
- Reset: Clear all progress and start over
- Keyboard Shortcut: Press
Spaceto toggle Start/Pause
The extension remembers:
- Loaded prompts
- Completed prompts
- Failed prompts
- Current position in the queue
- Active generations
This means you can close and reopen the browser without losing progress.
- Make sure you're on https://higgsfield.ai/sora-trends/tiktok
- Check that the CSV file was loaded successfully
- Open DevTools Console to see detailed logs
- The Higgsfield AI page layout may have changed
- Check the Console for errors
- Try manually setting up once, then run the extension
- The extension looks for "In Queue" and "In Progress" status text
- If the UI changed, the selectors may need updating
- Check Chrome notification permissions
- Make sure "Do Not Disturb" is off
- Check Chrome Settings > Privacy and security > Site Settings > Notifications
HIGGSFIELD CHROME EXTENSION/
├── manifest.json
├── popup/
│ ├── popup.html
│ ├── popup.css
│ └── popup.js
├── content/
│ └── content.js
├── background/
│ └── service-worker.js
├── utils/
│ ├── csv-parser.js
│ └── storage.js
├── icons/
│ ├── icon16.png
│ ├── icon48.png
│ └── icon128.png
└── template_prompts.csv
- Popup: User interface and controls
- Content Script: Page automation and DOM manipulation
- Service Worker: Background task management and alarms
- Utils: CSV parsing and storage helpers
- Open DevTools on the Higgsfield AI page (content script logs)
- Click extension icon > right-click > "Inspect" (popup logs)
- Go to
chrome://extensions/> "Service worker" link (background logs)
This extension:
- Only runs on higgsfield.ai domains
- Stores data locally in Chrome storage
- Does not send data to external servers
- Does not track user behavior
For issues or questions, check the Console logs for detailed error messages.
Current version: 1.0.0
This extension is provided as-is for automation purposes.