Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davehunt/fxbootstrap
Bootstrap launcher for Firefox
https://github.com/davehunt/fxbootstrap
Last synced: 22 days ago
JSON representation
Bootstrap launcher for Firefox
- Host: GitHub
- URL: https://github.com/davehunt/fxbootstrap
- Owner: davehunt
- License: mpl-2.0
- Created: 2018-10-31T22:52:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-12T22:30:32.000Z (almost 3 years ago)
- Last Synced: 2024-12-02T10:56:31.543Z (about 1 month ago)
- Language: Python
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![license](https://img.shields.io/badge/license-MPL%202.0-blue.svg)](https://github.com/davehunt/fxtbootstrap/blob/master/LICENSE.txt)
[![Build Status](https://travis-ci.org/davehunt/fxbootstrap.svg?branch=master)](https://travis-ci.org/davehunt/fxbootstrap)
[![updates](https://api.dependabot.com/badges/status?host=github&repo=davehunt/fxbootstrap)](https://dependabot.com)
[![style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)# fxbootstrap
A simple command line tool for launching Firefox with a temporary profile.
## Installation
```
$ pip install fxbootstrap
```## Launching Firefox
Running `fxbootstrap` will download and install the latest Firefox Nightly for your
platform to a temporary directory. It will then generate a clean profile and launch
Firefox using the new profile.```
$ fxbootstrap
✔ Downloaded Firefox to /var/folders/wz/3v_j7g2n2zx_q6qs8g7vmyg00000gn/T/tmpg_WfUI/2018-11-05-22-01-07-mozilla-central-firefox-65.0a1.en-US.mac.dmg
✔ Installed Firefox in /private/var/folders/wz/3v_j7g2n2zx_q6qs8g7vmyg00000gn/T/tmpg_WfUI/Firefox Nightly.app
✔ Generated profile at /var/folders/wz/3v_j7g2n2zx_q6qs8g7vmyg00000gn/T/tmpRZox06.mozrunner
🦊 Running Firefox Nightly 65.0a1 (20181105220107)
```After closing Firefox, the temporary directory containing the binary, installation,
and the profile will be deleted.## Installing add-ons
Add-ons can be installed into the Firefox instance by passing one or more
paths to XPI file(s) on the command line:```
$ pipenv run fxbootstrap --addon fbcontainer.xpi --addon fxlightbeam.xpi
```# Resources
- [Release Notes](http://github.com/davehunt/fxbootstrap/blob/master/CHANGES.md)
- [Issue Tracker](http://github.com/davehunt/fxbootstrap/issues)
- [Code](http://github.com/davehunt/fxbootstrap)