Is it possible to use c++ binary in chrome extension ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes, like with other browsers, you can write a NPAPI plugin that will comunicate with your extension. See the related Google page at code.google.com And a more generic description at wikipedia |
|||
|
|
|
NPAPI is a big and heavy hammer that may raise security concerns. Google has just released NativeClient. All code ran inside NaCl is sandboxed so it's as secure as a javascript extension but it comes with it's limitations. I'd recommend you to take a look at NativeClient before turning to NPAPI. Google is putting a many efforts on this technology, gotta be worth a read. |
|||
|
|
