Quick Switch
Jump to any open tab instantly by typing part of its title or URL.
Overview #
Quick Switch is a command-palette-style search overlay for your open tabs. Press the keyboard shortcut and start typing — Takt filters results in real time by tab title and URL, letting you navigate instantly without reaching for the mouse.
Opening the overlay #
Quick Switch requires Premium. Press Alt + Shift + Space on any regular web page to open the overlay inline.
On pages where content scripts cannot be injected, Takt opens a standalone popup window (560 × 480 px) instead. This fallback activates on URLs that match any of the following:
chrome://chrome-extension://about:chrome-untrusted://chromewebstore.google.com
Searching and navigating #
Type in the search box to filter results in real time. Filtering is case-insensitive and matches against the full tab title and full URL. Every keystroke updates the list immediately — including clearing the box, which returns to the full list.
- ↑ / ↓ — move selection up or down; wraps around at the ends.
- Enter — jump to the selected result (focuses the tab, wakes a hibernated tab, or opens a history URL in a new tab).
- Tab — autocompletes the search input with the selected result's title.
- Esc — dismisses the overlay and returns focus to the previous tab.
How results are ranked #
Results appear in four groups, always in this order:
-
Open tabs — returned by
chrome.tabs.query({})in Chrome's natural tab order. Up to 50 open tabs are shown. - Hibernated tabs — returned from the hibernation store in insertion order. Up to 50 hibernated tabs are shown.
-
History results — returned by
chrome.history.searchusing Chrome's built-in relevance and recency ranking. Up to 20 history items are shown. - Downloads — filenames of completed downloads, returned by chrome.downloads.search. Up to 20 downloads are shown, and only when the Downloads source is enabled.
Takt does not apply any additional scoring or re-ordering beyond what Chrome provides. The combined list is always ordered: open tabs → hibernated tabs → history items → downloads.
Downloads search source #
Quick Switch can search the filenames of your completed downloads. It is a Premium feature and requires granting the optional Downloads permission.
Granting the Downloads permission
Grant the optional Downloads permission from Options → Settings → Permissions. The Downloads permission can be revoked; revoking it removes the Downloads source.
Privacy
The search runs on-device via chrome.downloads.search and filenames never
leave the browser.
- Only filenames are searched, not file contents.
- Downloads appear only when you are typing a query, not in the default unfiltered list.
- Selecting a download result opens the file locally, not a browser tab.
- Up to 20 download results are shown, and only files that still exist on disk.
Free vs Premium #
Premium Quick Switch is a Premium feature. The keyboard
shortcut Alt + Shift + Space is gated by
canUseKeyboardShortcut(), which returns true only for Premium
users. Free users pressing the shortcut see no response.
For Premium users, Quick Switch searches open tabs and hibernated tabs by default. To also include browsing history results, grant the optional History permission from Options → Settings → Permissions. Without the History permission, Quick Switch is fully functional but no history results appear. The Downloads source is also Premium-gated and requires the optional Downloads permission (grant via Options → Settings → Permissions).
Edge cases and gotchas #
-
Blocked pages open a popup. On
chrome://,chrome-extension://,about:,chrome-untrusted://, andchromewebstore.google.compages the shortcut opens a 560 × 480 popup window instead of an inline overlay. - No minimum query length. Results update on every keystroke. Clearing the search box returns the full open-tab list.
-
Search is case-insensitive. Typing
GITHUBfinds tabs withGitHubin the title or URL. - History results are deduplicated. URLs already present as open or hibernated tabs are excluded from the history section.
-
Chrome internal URLs are excluded from history.
chrome://andchrome-extension://URLs are filtered out of history results even if they appear in the browser's history. - Zero open tabs. Opening Quick Switch when there are no open tabs shows "No open tabs" in the results area.
- No matches found. If no results match your query, the results area shows "No matches found".
- The overlay closes automatically if you switch to a different tab or focus a different window while the overlay is open.