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
- Host: GitHub
- URL: https://github.com/eexit/firefox-versions
- Owner: eexit
- License: bsd-2-clause
- Created: 2017-04-28T16:33:18.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-28T19:07:07.000Z (about 8 years ago)
- Last Synced: 2025-01-07T17:46:07.472Z (5 months ago)
- Topics: firefox, homebrew, homebrew-cask, homebrew-tap, mac-app, mozilla-firefox, versions
- Language: Ruby
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 browserBrowser 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
```