Quickly switch between tabs using only the keyboard by fuzzy-searching over the tabs' title text, analogous to what fzf provides for files.
Status: Definitely usable but still in development; requires manual installation.
Default shortcut: Ctrl + e
- Clone the repo.
- Browse to
about:debugging
. - Select This Firefox on the left-hand menu.
- Click Load Temporary Add-on....
- Select the
manifest.json
file from the repo.
"Fuzzy search" sometimes implies robustness against typos and sometimes does not. The fzt search matches only strings that contain the query as a literal subsequence; e.g. "the" will match "them" and "one two three" but will not match "teh". Also, fzt is currently not as intelligent about ranking matches as fzf is. Results are sorted by longest match, without regard for other heuristics, e.g. how early a match occurs or how long the non-maximum matches are.