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
- Host: GitHub
- URL: https://github.com/luizfonseca/firefox-commandeer
- Owner: luizfonseca
- Created: 2025-02-17T00:44:16.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2025-02-21T22:51:04.000Z (8 months ago)
- Last Synced: 2025-06-25T02:04:10.147Z (3 months ago)
- Topics: addons-mozilla-org, extension-chrome, firefox, firefox-addon, manifest-v2
- Language: TypeScript
- Homepage: https://addons.mozilla.org/en-US/firefox/addon/commandeer/
- Size: 81.1 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Firefox Command Bar
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
```