A clean, dark-themed browser homepage for fast searching and organised bookmark access.
Universal Search is a single-file browser homepage that puts two things front and centre: your bookmarks and a multi-platform search bar. It's designed to replace your browser's default new tab page with something faster, more personal, and better organised.
- Bookmarks organised into colour-coded categories (Entertainment, Productivity, Shopping, etc.)
- Instant search/filter to find any bookmark by name or tag
- Compact / Comfortable view toggle — switch between a dense grid and a spacious layout, with your preference saved across sessions
- One-click search across 25+ platforms including Google, YouTube, Reddit, GitHub, Spotify, Amazon, IMDb, and more
- Type a query and click any platform card to search it directly
- Click a platform card with no query to open that site's homepage instead
- Press Enter to default-search with Google
- Dark theme throughout
- Smooth tab switching between Bookmarks and Search views
- Fully responsive — works on desktop and mobile
Everything is configured via two plain JavaScript arrays at the top of the <script> block — no build tools or dependencies required.
{
name: "My Site",
icon: "fas fa-star", // any Font Awesome icon class
url: "https://mysite.com/search?q=",
home: "https://mysite.com/",
color: "#ff0000"
}{
name: "🌟 My Bookmark",
url: "https://example.com",
category: "My Category",
tags: ["tag1", "tag2"]
}const categoryColors = {
"My Category": "#ff9900"
}No installation needed. Just open index.html in any browser. To use it as your browser's homepage, point your browser's homepage setting to the local file path or hosted URL.
| Technology | Usage |
|---|---|
| HTML / CSS / JS | Everything — single self-contained file |
| Font Awesome 6 | Icons (loaded via CDN) |
| localStorage | Remembers compact/comfortable view preference |
