An open API service indexing awesome lists of open source software.

https://github.com/luizfonseca/firefox-commandeer

An extension that helps you search your tabs or find anything on Firefox. Similar to Arc's CMD+K / MacOS Spotlight
https://github.com/luizfonseca/firefox-commandeer

addons-mozilla-org extension-chrome firefox firefox-addon manifest-v2

Last synced: about 2 months ago
JSON representation

An extension that helps you search your tabs or find anything on Firefox. Similar to Arc's CMD+K / MacOS Spotlight

Awesome Lists containing this project

README

          

# Firefox Command Bar

Screenshot 2025-02-21 at 23 49 42

A simple command bar for Firefox that let's you search your tabs by title and URL, and switch between them using the keyboard.
You can also search the web and eventually you might be able to do more.

## Requirements

- [Node.js](https://nodejs.org/en/) >= 18
- [pnpm](https://pnpm.io/) >= 6
- [web-ext](https://extensionworkshop.com/documentation/develop/getting-started-with-web-ext/) >= 6

## Installation

Install dependencies using `npm`:
```bash
npm install
```

## Development

You can run the parcel hot-reload server using:

```bash
npm run start
```

You can then proceed to `about:debugging` on Firefox and load the extension from the `dist` folder.

## Build & Package

Packaging depends on `web-ext` being installed. You can use `brew` or other tools.

You can build the extension using:

```bash
npm run build
```

Package the extension using:

```bash
npm run package
```