I need in Chrome extension these actions:

  • Download binary file to temp
  • Unzip it (it's clear .zip package)
  • Move files from unpacked directory, to directory of my extension
  • Delete temp files

I've been looking for similar what Firefox Scriptable XPCOM interfaces offer, https://developer.mozilla.org/en/XPCOM_Interface_Reference

Is there any simple way to do this, or I need to create the components myself in C/C++ and one of NPAPI, PPAPI, NSPR ?

link|improve this question

2  
I can't speak to the capabilities of a chrome extensions, but if you do need to use C++ you'll be looking at NPAPI; PPAPI was essentially discontinued (replaced by NaCl, which might be able to dow hat you want, but not sure) and NSPR is just a runtime/utility library. XPCOM support is also gone from plugins as of FF 3.6. Check out firebreath.org if you do decide you need to use C++; it'll speed things up a lot. – taxilian Jan 18 at 18:00
The FileSystem API might be enough in this case. – Georg Fritzsche Jan 19 at 1:06
Have you seen this: code.google.com/chrome/extensions/npapi.html – Adam Ayres Jan 19 at 5:10
@GeorgFritzsche can you please expand your comment to answer, and list out what parts of Filesystem API should I use for these actions? Thanks – Marek Sebera Jan 19 at 16:50
@AdamAyres yep, I've seen it, but problem is I'm not very good in pure C/C++ and I need to support multiple platforms (osx,win,lnx) – Marek Sebera Jan 19 at 16:51
show 4 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.