0

Hello i was wondering how to get started in developing an NPAPI server with c++ in chrome. is this even possible? my goal is to have 2 clients find one another through the extension.thanks.

DasBoot
  • 707
  • 3
  • 15
  • 37

1 Answers1

2

Well, yes. You'll have to choose between using Firebreath, which can help you a lot by abstracting some of the NPAPI, or start from scratch and use colonel panic's tutorials.

Be prepared to have some deep work to understand how plugins work!

Gui13
  • 12,993
  • 17
  • 57
  • 104
  • 1
    Look particularly at FireBreaths' HTTPService library; it's mostly undocumented and not widely used, but it is a HTTP server that runs inside a FireBreath (and thus NPAPI) plugin. – taxilian Jul 09 '12 at 15:36
  • Nice answer, I didn't know about Colonel Panic yet. Funny name too ;) – Rob W Jul 10 '12 at 22:10