alfred-fzy-chrome-history
v1.0.1
Published
Use FZY to search chrome's history
Downloads
9
Maintainers
Readme
alfred-fzy-chrome-history
Fuzzy search your chrome's history.
This workflow uses:
This workflow is similar to the workflow I created at https://github.com/tuan/alfred-fzf-chrome-history, the main difference is that this workflow uses FZY instead of FZF.
I found that the javascript implementation of FZY to be more responsive than the javascript port of FZF I use in the other workflow.
This workflow is what I'm currently using, the FZF workflow is still there for people who prefer FZF.
Installation
npm i -g alfred-fzy-chrome-history
Usage
Prefix
Default prefix to trigger the workflow is: ch
Global search
ch <fuzzy search keywords>
Scope search
You can limit the search scope to a particular domain by specifying the domain keywords with @ prefix.
Note:
- Domain keywords use exact match algorithm. So
@git
will only matchgithub.com
orgitlab.com
, but won't match<g>ofor<it>.com
. - You can specify multiple domain keywords in your query to incrementally fine tune your search. For example:
too broad @git need narrowing down to @hub and only dev tld @dev
will search only domains that matchgit.*hub.*dev
such asgithub.dev
Example:
ch @git <fuzzy search keywords>
will perform the search for all pages whose domain includes the wordgit
.ch <fuzzy search keywords> @git
does the same thing as above.ch @git <fuzzy search keywords> @lab
will perform the search for all pages whose domain isgit.*lab
, for example:gitlab.com
instead ofgithub.com