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

https://github.com/eexit/firefox-versions

Caskroom for older Firefox versions
https://github.com/eexit/firefox-versions

firefox homebrew homebrew-cask homebrew-tap mac-app mozilla-firefox versions

Last synced: 4 months ago
JSON representation

Caskroom for older Firefox versions

Awesome Lists containing this project

README

        

# Mozilla Firefox Versions

Get older Firefox versions... Could be very useful for Selenium WebDriver.

## Installation

$ brew tap eexit/firefox-versions

## Usage

$ brew cask install firefox-40

## Disable auto-update

:warning: Don't launch the browser!

1. Download [autoload.js](./autoload.js) and [mozilla.cfg](./mozilla.cfg)
2. Put them in the respective directories:
* `/Applications/Firefox-.app/Contents/Resources/defaults/pref`
* `/Applications/Firefox-.app/Contents/Resources`
3. Launch browser

Browser should not being in the process of downloading the latest version.

Scripted example for Firefox 40 (copy/paste directly into your terminal):

```bash
$ source /dev/stdin <<'EOF'
version=40
appdir=/Applications/Firefox-$version.app
autoload=$appdir/Contents/Resources/defaults/pref/autoload.js
cfg=$appdir/Contents/Resources/mozilla.cfg
curl -sS https://raw.githubusercontent.com/eexit/firefox-versions/master/autoload.js -o $autoload
curl -sS https://raw.githubusercontent.com/eexit/firefox-versions/master/mozilla.cfg -o $cfg
EOF
```