| name | saved-searches |
| description | Create, manage, and run saved searches on X/Twitter. Save search queries, list saved searches, delete them, and run them to see fresh results. Use when users want to save or manage search queries on X. |
| license | MIT |
| metadata | {"author":"nichxbt","version":"1.0"} |
Saved Searches
Browser console scripts for managing saved searches on X/Twitter.
Script Selection
| Goal | File | Navigate to |
|---|
| Save a search query | src/saveSearch.js | x.com/search?q=... (search results page) |
| List / delete / run saved searches | src/savedSearchManager.js | x.com |
Quick Start
Save a search
- Search for something on X:
x.com/search?q=your+query
- Open DevTools (F12) → Console
- Paste
src/saveSearch.js → Enter
Manage saved searches
- Go to
x.com
- Open DevTools (F12) → Console
- Paste
src/savedSearchManager.js → Enter
Available Functions (savedSearchManager.js)
XActions.list()
XActions.run('query')
XActions.delete('query')
XActions.export()
Configuration
const CONFIG = {
maxTweets: 100,
scrollDelay: 2000,
actionDelay: 1500,
maxScrollAttempts: 25,
};
Notes
- X limits saved searches to 25 per account
- Saved searches are stored in your X account (not just browser storage)
savedSearchManager.js can also scrape trending topics for discovery
Related Skills
- discovery-explore — Browse trending topics and explore without saved searches
- analytics-insights — Analyze search results for hashtags and keywords
- twitter-scraping — Scrape full search result data