Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to use c++ binary in chrome extension ?

share|improve this question

2 Answers

up vote 9 down vote accepted

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

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.