2

I've built a simple NPAPI plugin, and registered it with Chrome. This all works; javascript in the browser is able to interact with plugin.

But i need to be able to call methods of my plugin from Chrome extensions.

Can it be done?

mpromonet
  • 11,326
  • 43
  • 62
  • 91
user63898
  • 29,839
  • 85
  • 272
  • 514

1 Answers1

4

Yes, you can. Extensions are implemented in JS and HTML, so you can embed and call a plugin from an extension just as you would from a web page.

smorgan
  • 20,228
  • 3
  • 47
  • 55