1

I have developed a small Firefox Add-ons extension (Javascript+Xul+i18n support) published on Mozilla Add-ons repository and I would like to port it to Chrome.

Are you aware of any tool that could help me to port it from Firefox to Chrome?

systempuntoout
  • 71,966
  • 47
  • 171
  • 241
  • Similar question, not quite a duplicate: http://stackoverflow.com/questions/3823635/write-once-run-anywhere-browser-plugin-tool-framework-language – Tyler Jan 13 '11 at 01:54

1 Answers1

1

Assuming this is your addon, you'll have to redesign it entirely. Chrome does not allow extensions to add entries to the context menu.

badp
  • 11,409
  • 3
  • 61
  • 89
  • that's ok, I use keyboard more than mouse so cutting the *context menu* feature is really not a problem. Any other suggestion? – systempuntoout Jan 13 '11 at 10:36
  • @systempuntoout The only UI elements you can add to are inside the URL area or in a collapsible right next to it; they can act on click (and optionally open a bubble with HTML in it). – badp Jan 13 '11 at 10:38
  • are you aware of any porting tools? – systempuntoout Jan 13 '11 at 21:03