Freddy
Freddy

Reputation: 137

How to autoreload temporary addon in FF 55.0.1?

since the newest version FF 55.0.1 the add on temporary load is not reload after modify the source code. it is necessary to access at about:debugging and reload, reload and reload after all modification... Is it possible to retreive the working before this version ?

thanks !

Upvotes: 3

Views: 512

Answers (1)

rinkashimikito
rinkashimikito

Reputation: 11

You can use web-ext to achieve this. This works in FF55+

First of all make sure you have NodeJS installed (you could also use Homebrew and brew install node on OSX).

With NodeJS in place you need to install web-ext via npm by typing in your terminal/cmd :

npm install --global web-ext

Then change directory to the one where your extension lives and run:

web-ext run

This will start the Firefox with your extension loaded and hot reloading enabled.

I hope this helps.

Upvotes: 1

Related Questions