views:

50

answers:

2

I have begun using Google Chrome as a primary browser, but I miss my Evernote extension, which can clip a web page directly to the local Evernote application. Is it possible for me to write an extension in Chrome that can do this?

A: 

I don't think chrome allows this, simply because it would be dangerous to let plugins have extended priviledges, they even run in an extra, low-rights thread and only communicate with chrome itself through pipes.

Femaref
A: 

Yes it is possible, through NPAPI, but your local application should be prepared for external communication. Code running in an NPAPI plugin has the full permissions of the current user and is not sandboxed or shielded from malicious input by Google Chrome in any way.

All this is described here: http://code.google.com/chrome/extensions/npapi.html

Mohamed Mansour
Thanks. It wasn't clear from the extension overview that NPAPI was what I was looking for, but that's exactly it.
Jake

related questions