rov3rPL
rov3rPL

Reputation: 11

Is there any way to get the code of existing NPAPI plugins?

I want to develop my own NPAPI plugin - is there any way to get the code of existing plugins? If not, what are the best practices / demos to start writing?

Upvotes: 0

Views: 141

Answers (2)

taxilian
taxilian

Reputation: 14324

No, you can't look at code for most existing plugins, unless they are open source and you can find the source. They are compiled and written in C or C++ generally. I'd look at http://npapi.com/tutorial1 and http://www.firebreath.org

If you're beginning, FireBreath is probably the easiest way to get started.

Upvotes: 2

belykh
belykh

Reputation: 1290

Your NPAPI plugin may have access to users filesystem You may read users profile folder and find existed plugins in the folder extensions.

Upvotes: 0

Related Questions