5

I'm starting a Firefox addon and from what I see:

  1. jpm is the tool to manage a Firefox addon ;
  2. WebExtensions are a new way to write Firefox extensions compatible with the extension API supported by Google Chrome and Opera ;
  3. yet I can't find if jpm is usable with WebExtensions.

Question

Is it possible to develop a WebExtensions using jpm?

Édouard Lopez
  • 40,270
  • 28
  • 126
  • 178
  • 2
    I dont think jpm and webext are compatible. https://developer.mozilla.org/en-US/Add-ons/WebExtensions – Noitidart Sep 19 '15 at 20:26

2 Answers2

4

Nope. They’re two separate ways of developing Firefox add-ons.

Just to add a little more detail, if you’re writing an add-on you want people to use now, you probably want to go with jpm. WebExtensions are still being implemented, and while we at Mozilla would love to hear your input on using the API, they’re not ready for production use at this point (Late September, 2015). If you do want to write a WebExtension, I’ve written a tutorial that should help you get started.

bwinton
  • 1,978
  • 2
  • 19
  • 21
0

You could try firefox-addon-skeleton for WebExtensions add-on quick-start.

Matthias Simon
  • 388
  • 5
  • 13