Search across all your browser tabs at once. Uses the KMP algorithm for text matching.
- Search all open tabs from one search bar
- Live highlighting as you type
- Navigate between matches with keyboard
- Click a result to jump to that tab
Uses KMP (Knuth-Morris-Pratt) instead of built-in regex.
- Precompute: Build the LPS failure table once for the pattern in O(m).
- Scan: Reuse the table to scan every text node across all tabs in O(n) each.
- Total: O(m + N) where m = pattern length, N = combined text of all tabs.
- Download this folder
- Go to
chrome://extensions/ - Enable Developer mode
- Click Load unpacked and select the folder
| Key | Action |
|---|---|
Ctrl+Shift+F |
Open search |
Enter |
Next match |
Shift+Enter |
Previous match |
Esc |
Close |
MIT