A catalog-aware Chrome extension that turns 126 named product groups into one-click actions — search, filter, multi-select, and bulk-open every product detail page for a brand collection across Amazon, Walmart, Target, and Home Depot.
The actual extension UI, loaded with a sample catalog (placeholder data, not real listings). Search, filter, multi-select groups, then "Open IDs" — the panel shows exactly which PDPs would open (nothing really launches). Try it freely — the full source is on GitHub.
Free & open-source. Clone or download the repo, then load it unpacked in Chrome — full install steps are in the README.
Some products don't travel alone — a "Magic Bullet blade set" or an "Ab Wheel Roller" maps to several product IDs across retailers that always need to be checked together. This extension encodes those relationships once, so opening an entire product group across four marketplaces becomes a single click instead of a manual hunt through a spreadsheet.
The first extension I built — the Multi-Marketplace Opener — solved opening a list of IDs. But a lot of catalog work isn't about loose lists; it's about groups:
The catalog relationships were already known — they just lived in a spreadsheet nobody wanted to navigate. So I made the spreadsheet the data layer and built the workflow on top of it. The extension loads the group→ID map and exposes it as a searchable, clickable interface.
The extension reads a CSV catalog at load, groups every ID by product and brand, and renders a fast, keyboard-driven interface for finding and opening them:
Live search across all group names, a brand dropdown, filters (Has ID / No ID / Single ID / Multi ID), and sorting by name or ID-count. Each group shows its live ID count for the currently selected platform.
Click to select any number of groups, with a live badge counter and a "selected groups" dropdown of removable chips. Select-all-filtered and clear-all make bulk operations effortless.
Open IDs launches every PDP in new tabs · One-Page Open combines all IDs into a single search · Open Group Search runs a separate search per group · Copy puts every group-and-ID pair on the clipboard.
Press F/S to open Filter/Sort menus, and global Ctrl+Shift+C / Ctrl+Shift+O to copy or open selected IDs from anywhere — no mouse required.
Switch the platform between Amazon (with 12 region domains), Walmart, Target, and Home Depot — every open/search/copy action re-routes to the correct URL pattern for that retailer.
Optional auto-copy on select, auto-open on double-click, and a "PDP by group names" text box for opening groups by pasting names. View preferences and platform choice persist across sessions.
A bundled CSV is the single source of truth. On load the popup parses it into an in-memory group model, then every interaction is a filter/sort/route over that model — no network, no backend.
chrome.storage.local and restore on next open.commands wire copy/open to system
keyboard shortcuts that fire even when the popup isn't focused.This is the tool I reach for first on any catalog review. Once the groups were encoded, the spreadsheet hunt simply disappeared from the workflow.
— Post-launch observationPart of my Chrome Extension Productivity Suite — see the companion Multi-Marketplace Opener & Scraper →