Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rtfmkiesel/ffs
Fuzzy search your Firefox history
https://github.com/rtfmkiesel/ffs
firefox golang
Last synced: 23 days ago
JSON representation
Fuzzy search your Firefox history
- Host: GitHub
- URL: https://github.com/rtfmkiesel/ffs
- Owner: rtfmkiesel
- License: apache-2.0
- Created: 2024-12-02T11:47:06.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-02T12:12:05.000Z (about 1 month ago)
- Last Synced: 2024-12-15T05:58:21.493Z (27 days ago)
- Topics: firefox, golang
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ffs
Fuzzy search your Firefox history.
_This is a simple PoC, thrown together in sub 1h and currently only supporting Linux and the default Firefox profile._
## Usage
```sh
ffs# e.g.
ffs "linkedin.com/in"
ffs "github*poc"
```## Install/Build
```sh
CGO_ENABLED=1 go install -ldflags="-s -w" github.com/rtfmkiesel/ffs@latest
``````sh
git clone https://github.com/rtfmkiesel/ffs
cd ffs# assuming you have go/bin in your path
CGO_ENABLED=1 go install -ldflags="-s -w" .
ffs# else
CGO_ENABLED=1 go build -ldflags="-s -w" .
./ffs
```