Skip to content
This repository has been archived by the owner on Oct 16, 2020. It is now read-only.
foudfou edited this page Sep 11, 2015 · 5 revisions

To build the addon from the source, you need to:

  • open a terminal
  • git clone git://github.com/foudfou/FireTray.git
  • cd FireTray/src
  • make build, or DEBUG=on make build (make all in old versions)

Then you get a .xpi file in ../build. You can now install this .xpi file in your Mozilla application: Tools > Addons > Install Addon from file.

Debug messages will be shown in the JS-Console and in your terminal if you launched your Mozilla application from there. You will also need to:

  • change the log level:
sed -i~ -e 's/Warn/All/' \
  ~/.thunderbird/YOUR_PROFILE/extensions/\{9533f794-00b4-4354-aa15-c2bbda6989f8\}/modules/logging.jsm`
  • set the pref browser.dom.window.dump.enabled to true, e.g. in about:config (add new pref, it doesn't exist per default)

To re-build the addon, simply go back to FireTray/src, and make clean; make all.

Clone this wiki locally