Tagged Questions

The Netscape Plugin Application Programming Interface (NPAPI) is a cross-platform plugin architecture used by many browsers, with the notable exception of the Internet Explorer.

learn more… | top users | synonyms

8
votes
1answer
1k views

Google Chrome Extensions and NPAPI

I need to write some Google Chrome extension. The problem is that Chrome JavaScript APIs don't give me enough power - I need to use native code. I thought about writing a NPAPI plug-in that will ...
7
votes
3answers
1k views

Deployment of NPAPI plugin with minimal user steps

Situation: I've already written an ActiveX control for my IE users which works perfectly. I build the .ocx, CAB it up, sign it, and put it on the site with an EMBED tag. Users load the page, the ...
7
votes
1answer
2k views

Generating async Javascript events from browser plugin (NPAPI)

I'm writing a web browser plugin (NPAPI.) My plugin starts a worker thread, and as the worker progresses, I'd like to pass events back to Javascript. But because of the NPAPI threading model, it's ...
6
votes
2answers
305 views

How many versions of an NPAPI browser plugin do I have to make?

I know that if I write a C++ plugin, then I need to have Linux, Mac, Windows versions at least but what's the full list of combinations? NPAPI is supported by many browsers so does that mean the exact ...
6
votes
2answers
2k views

Any example of writing an NPAPI plugin in Linux?

I need to write a browser plugin to communicate with another process, and it seems I have to use NPAPI plugins. Is there any example or open source NPAPI plugin I can refer to? Many thanks for your ...
5
votes
3answers
159 views

How do I programatically trigger shortcut keys in Chrome with an Extension? (NPAPI or JavaScript Extensions)

Trying to figure out how to automatically trigger the web developer tools by executing the "Ctrl + Shift + i" via my own extension. There is one stackoverflow question, but none of the answers worked. ...
4
votes
2answers
123 views

Side by Side dependency between C++ and C#

I'm making a browser plugin using FireBreath Framework. Most of logic is written on C# and to call it from browser I've made a C++ wrapper. Browsers call C++ Native code which calls "proxy" Managed ...
4
votes
1answer
643 views

NPAPI plugin in Internet explorer?

Is there any way to make an NPAPI plugin work in Internet explorer or do I need to go the activex way ? thanks
4
votes
2answers
4k views

Embedded Webkit - script callbacks how?

On windows, when the "Shell.Explorer" ActiveX control is embedded in an application it is possible to register an "external" handler - on object that implements IDispatch, such that scripts on the web ...
3
votes
1answer
238 views

Is a NPAPI plugin what I am looking for?

I need to develop a mini ClickOnce plugin for Firefox, Chrome, Operah and Safari (preferably, one that works on all of the above). My plugin needs to be able to run an application in a one-click ...
3
votes
2answers
2k views

A NPAPI plugin doesn't work in Google Chrome

I wrote a small NPAPI plugin using an old Mozilla NPRuntime example as a base. My problem is that it works fine on Firefox and Safari (on Windows), but it fails to work with Google Chrome. I can see ...
3
votes
1answer
1k views

Firefox [npapi] plugin development - firefox freeze when calling a method

I'm trying to learn how to write a Firefox plugin. I downloaded the npruntime example from Mozilla compiled it and ran it. Getting properties from the plugin worked well but when I tried to call a ...
3
votes
2answers
2k views

Embedding flash within a custom desktop application, using NPAPI?

Note: Please don't answer with just use Adobe AIR". I am aware of it, and it's not applicable in this situation. I've been reviewing the Gecko Plugin API reference. I'm assuming I'd have to ...
2
votes
3answers
106 views

Sample NPAPI plugin in C for Linux

I need to make a binary plugin in C that works with both Firefox and Chromium, on Linux. Where can I find a simple example of an NPAPI plugin for Linux, written in C?
2
votes
1answer
124 views

Is it possible to pass Javascript objects to ActiveX (and use them)?

I want to pass JavaScript objects (JSON and function objects) into my ActiveX control. Ideally, I could manipulate JavaScript objects (e.g. reading or modifying JSON) and perform JavaScript function ...
2
votes
1answer
119 views

Cross Platform NPAPI Interfacing/Integrating

I would like to use Google Earth in one of my cross platform C++ applications, and the only way I can see that would allow me to integrate it nicely into my GUI and interface to it using it's ...
2
votes
1answer
196 views

How can I load a NPAPI Plugin from a Safari extension?

My query is similar to this global.html is unable to load NPAPI plugin from safari-extension builder but its loading from the direct link. How can I load a NPAPI Plugin from a Safari extension?
2
votes
1answer
165 views

How can I load an NPAPI plugin in my own application?

The docs I've found on NPAPI plugins explain how to write plugins to be loaded by browsers, but how hard is it to write an application that loads existing NPAPI plugins? (My ultimate goal here is to ...
2
votes
1answer
201 views

How to render HTML from an NPAPI plugin in Safari

I've been writing a Mac NPAPI-based browser plugin to convert a file of custom mimetype (say, "application/x-foo") into an HTML representation, which can then be viewed directly in a browser. These ...
2
votes
1answer
209 views

NPNInvoke - Passing plugin data back to browser

I am calling back an object in Javascript using NPAPI. Before this call, the functions I am calling result in proper invocation of functions in JavaScript but it fails in NPN_Invoke calls. Code ...
2
votes
1answer
289 views

Packaging an NPAPI Plugin for Chrome using FireBreath

I'm trying to package a plugin created with FireBreath as a Chrome extension. I've read on Chrome Extensions and NPAPI that the way to do that is to include the files in the manifest like so: ...
2
votes
1answer
174 views

Can I build FireBreath NPAPI Plugin for DirectFB?

Is it possible to build NPAPI plugin using FireBreath for webkit browser running on directFB, embedded linux? I am asking because I found that while building a my test plugin on ubuntu, It is using ...
2
votes
1answer
204 views

using firebreath created npapi for chrome can i call the plugin methods from the extensions and not from html loaded page [closed]

Simple question, i hope: 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 ...
2
votes
1answer
290 views

Making a Chrome extension to download (not view) the link and with custom filename

I'm currently developing a simple javascript extension for Chrome. The problem is simple but probably unfixable, but still here's the issue: on particular pages, i embed links to some files (i don't ...
2
votes
2answers
365 views

Open/Save dialog from Netscape plugin on Mac OS X?

I'm developing an NPAPI plugin for Mac OS X, and need an Open/Save dialog at various times. Accessing the window directly fails, since plugins are now run out-of-process... but Apple's documentation ...
2
votes
2answers
651 views

Google Chrome Extension: Print the page silently

I'm developing an internal Google Chrome Extension that needs a way to initiate print the current page to the printer. I do not want the default Print dialog to come up (so, javascript:window.print() ...
2
votes
1answer
352 views

global.html is unable to load NPAPI plugin from safari-extension builder but its loading from the direct link

I am developing a Safari extension for both Mac and Win. My extension is a trigger point for my plugin which i am storing at ** /Library/Internet Plug-ins/** My extension's global.html is calling for ...
2
votes
2answers
511 views

Simple working example using plugin writen in Qt and make it work with NPAPI

Can anybody show me simple working example using Qt(export DLL plugin file) and make it work with NPAPI. I want simple example to test it in Google Chrome. Any links, codes ... Thank you
2
votes
0answers
141 views

Does using XEmbed put restrictions on OpenGL functionality?

I am building an NPAPI plugin for Linux that uses the XEmbed protocol for the window that is controlled by the plugin. I am using Gtk+ for attaching to the window, wrapping the XEmbed window with a ...
2
votes
1answer
306 views

NPAPI plugin problems in Windows 7

I have a NPAPI plugin which I have written and been using for some time with Firefox 3.x with no problems. The object is defined as follows - <object class="someClass" id="pluginobj" ...
2
votes
1answer
138 views

SSL Certificate Context - How to get it using NPAPI

How to get the SSL certificate context of the website using NPAPI ? Can I use libnss (Network Security Services) or should I stick to WinINet's InternetQueryOption() to get the context. Thanks, Saleh ...
2
votes
1answer
174 views

Plugins + Extensions on Safari 5.0.1

My question is very simple: Is it possible to pack plugins into extensions for Safari? For instance, the exact NPAPI plugins which work on Google Chrome also work on Safari. However in Chrome I'm ...
2
votes
2answers
1k views

How to convert ActiveX control to NPAPI plugin

I have an ActiveX control which is designed to * Search for nearby wireless networks * Create a wireless access point * Manage network adapters I would like this plugin to work in Google ...
2
votes
2answers
6k views

A simple hello world NPAPI plugin for Google Chrome?

I am trying to make a chrome plugin but Chrome API doesn't give me enough power. I want to use NPAPI but I have no idea how to use it but I do have experience in Visual C++. Can someone show me a ...
2
votes
3answers
532 views

Show a window from 32-bit NPAPI Plugin in 64-bit Safari

I have an old NPAPI plugin for OS X that I'm trying to refit for use with Snow Leopard's version of Safari. My problem is that when I switch Safari to 64-bit mode, it changes the plugin environment to ...
2
votes
1answer
368 views

How come NPRuntime require xpt file?

I am trying to make sense of whatever I learned about NPRuntime. Here is a example of NPRuntime plugin from from mozilla-central of NPRuntime plugin, which mentions following lines // ...
2
votes
1answer
223 views

How can I get an NPAPI plugin to read an “src” tag

i'm a little stuck on getting a plugin to work. I need it to take a "src" parameter but I can't seem to make it do this. So i've basically got the npsimple basic plugin. It's probably something ...
2
votes
2answers
478 views

Firefox Gecko SDK : NPP_GetValue not getting called

I have tried out the NPRuntime sample provided with the Gecko SDK 1.9.1 with the help of this link. It works perfectly fine with Firefox 3.6. Following the above steps I created a new scripting ...
2
votes
2answers
465 views

Firefox 3.6 plugins fail on Mac?

I just upgraded my mac to Firefox 3.6, and now neither of my TIFF Viewing plugins work. in 3.5, If I had Quicktime on, then I'd get the tiff, viewed through quicktime. If I had Quicktime disabled, ...
2
votes
1answer
213 views

Non-drawing Mozilla plug-in

I have some dll that implements some logic. I want to create wrapper that will be accessible from JavaScript of HTML page in Mozilla browser. I have found npruntime framework,but it seems supports ...
2
votes
1answer
822 views

npapi plugin: how do I install a gecko plugin?

I've compile the basic plugin found here but I can't figure out how to install it on my Ubuntu machine.
2
votes
2answers
1k views

How to get the NPP Instance inside a NPAPI C plugin

I have written a NPAPI plugin in C which needs to call the NPN_Invoke function (in order to call a JavaScript function). But NPN_Invoke() takes the NPP instance as a parameter. Only the NP_New() ...
1
vote
1answer
36 views

May I create multiple Plugins in one DLL using NPAPI?

What I've seen so far, there can only be one plugin per .dll file, is that correct? The Browser calls NP_GetEntryPoints, NP_Initialize and NP_Shutdown only "once" per dll, right? What I'm aiming for ...
1
vote
1answer
38 views

Where to download the NPAPI?

I've been searching for about an hour now, I already feel kinda dumb. Where can I find a download for the NPAPI ? I've skimmed the Gecko Plugin API Reference a little bit, but couldn't find a ...
1
vote
0answers
52 views

An npapi plugin (by Firebreath) can be called by external page, but not the chrome extension page

The npapi plugin is a slight modification from FBTestPlugin. The plugin is currently defined public in manifest. Now, the plugin method can be called from external page. But not in any page in the ...
1
vote
0answers
51 views

Public NPAPI plugin from Chrome extension fails to load

I have a NPAPI plugin, incorporated into Chrome extension, and defined in manifest file as public. When an object tag with the plugin's mime type is inserted into background page of the extension, the ...
1
vote
1answer
76 views

NPAPI Browser plugin

Is there any free NPAPI plugin that could provide full access to local file system? Maybe there are some ready-for-use universal plugins which provide access to many OS native api functions?
1
vote
1answer
43 views

PrintWindow works in standalone application and does partially work in NPAPI plugin

I have a code, which captures a given window by PrintWindow function. Specifically I do capture web-pages in a browser. This code is tested in a standalone Windows application, and it works ok. The ...
1
vote
1answer
53 views

Can I access the form elements of a flash form from qtwebkit?

I have a qtwebkit browser with Mozilla NPAPI plugins from which I access a web page. This page contains flash forms and I need to be able to access and manipulate its elements. Does anyone knows if ...
1
vote
0answers
70 views

Calling java applets via NPAPI / NPRuntime in Chromium

I found this bug: http://code.google.com/p/chromium/issues/detail?id=580#c69 stating that Chromium doesn't support LiveConnect. One of the developers responded with We don't ever intend to ...

1 2 3 4 5 6