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

0
votes
1answer
45 views

Visual Studio C++ NPAPI plugin with Twain support

I want to make a Google Chrome plugin that use Twain to remote control a Digital Camera. I want this to run on Windows and I'm using Visual Studio Express 2012 C++. I have this sample for NPAPI and ...
0
votes
1answer
54 views

Google Chrome Extension and NPAPI/FireBreath embed webpages

I am developing a project where i intend to open multiple webpages in the same one but not using <iframe>. I have tried in the past using <iframes> but i usually end up with the browser UI ...
0
votes
1answer
42 views

Extracting files with jszip and saving to local disk using npapi-file-io. Binary file save very slow

I'm using JSZip to open a zip file. Looping and saving each file as a binary file using the npapi-file-io plugin. The problem is; it's very slow. Extracting a zip locally takes a couple of minutes ...
0
votes
0answers
20 views

How to draw graphics on any section of desktop with Chrome Extensions?

I was told that this is possible with NPAPI plugins, but not know how to take the first step. Will there be any method without having conocimiendo of NPAPI or a plugin already made to draw a graphic? ...
0
votes
1answer
32 views

Register NPAPI Plugin from withing an SVG

I Have been recently working with NPAPI Plugins for Chrome. The plugin has been implemented to be scriptable. I have a custom MIME Type for invoking this plugin. In an html file, I have used an ...
0
votes
0answers
50 views

NPAPI plugin refresh issue in Google Chrome

Or ... "When to call pluginWindowMac::InvalidateWindow()"? Apologies. It's hard to be brief here, it's a fairly specific test case. I'm testing an NPAPI plugin (now adapted to Firebreath) under ...
0
votes
0answers
32 views

Android SampleBrowserPlugin Installation failed

I am trying to install the samplebrowserplugin given in the android source code. As given here (https://github.com/android/platform_development/tree/master/samples/BrowserPlugin), I am able to follow ...
0
votes
0answers
59 views

Shared Inter-Process Memory between NaCl and NPAPI or any other native process

I have an NaCl plugin which renders up to 4 full HD video views; it's a video editing tool. It currently runs when chrome is launched with sandboxing disabled, because it reads the video files from ...
0
votes
1answer
58 views

Callback from FireBreath

In my plugin, i want to start new thread and take callbacks from it: I have function myCallback() and i want to call it every 2 seconds from my thread in plugin. How can i do it? // this method ...
-3
votes
1answer
36 views

Javascript injection from npapi plugin [closed]

I want to inject some javascript into a webpage from my npapi plugin?? I just read this article But i didn't get the result i was waiting for. (nothing in the javascript console)
-2
votes
0answers
62 views

invoke javascript from a NPAPI npruntime plugin [closed]

I'm trying to invoke javascript event when loading my npapi (npruntime/C) plugin. I want to send this : location.href("http://www.google.fr"); In my code snippet, I have these lines : NPP ...
0
votes
1answer
61 views

FireBreath: How to securely display a confirmation dialog to the user?

I am developing a FireBreath NPAPI plugin that for some cases it has to search the user's filesystem. To inform the user and to avoid malicious use of the plugin, I wanted to display a confirmation ...
0
votes
0answers
23 views

How does my Web Page ensure a library is present/registered on the client OS

My web page uses a proprietary Video SDK to display a single video stream. There is an OBJECT tag in the HTML with a typeof "application/npAxHOST-plugin". I have it working on my Dev machine because ...
0
votes
1answer
70 views

NPAPI (npruntime) on linux

I'm developing a NPAPI npruntime plugin under Linux platform. I just modified a little bit in npruntimeSample from mozilla SDK. I got a successful build and my library was generated but the browser ...
0
votes
1answer
28 views

npapi wrap multi control

I want to wrap some activex dll to npapi. An ActiveX DLL can contain many controls, just like the one I'm going to wrap. Can an npapi dll contain many controls? I know the npapi control is working ...
0
votes
1answer
58 views

How do I prevent multiple instances of a process(NPAPI plugin) from running in Posix?

On windows, I solved this issue by creating a named semaphore. If plugin 1 crashes while holding the semaphore, the semaphore is released. But its not the case with Posix (on Mac), where the semaphore ...
0
votes
1answer
86 views

How can i call C++ Code from JavaScripts with the NPAPI

I saw that one can call the c++ code from JavaScript like this: Calling C++ Code from DHTML But it is for IE,i use NPAPI to implement a plugin for firefox,and i want to call the method which is ...
0
votes
1answer
53 views

NPRuntime plugin says Missing Plug-in in Safari(Windows)

I have developed an NPRuntime plugin, everything is ok, but it not initialized in Safari. I registered the plugin in MozillaPlugins registry key, it works fine for Chrome/FF/Opera, but Safari writes ...
-1
votes
1answer
95 views

NPAPI functions Called by Javascript

I'm trying to code a hello world example of an NPAPI plugin. I implemented all the basics functions needed and i have added a Get_String() function that return a hello world string. After building, ...
0
votes
2answers
69 views

NPAPI mac plugin shows unresponsive message in Chrome when opening context menu

I'm working on an NPAPI based plugin, and have been observing an issue when opening the context menu in Chrome, displaying an error message saying that the page is unresponsive after leaving it open ...
0
votes
1answer
53 views

Finding the crash location inside NPAPI plugin in Chrome

I've got an NPAPI plugin that works successfully on Chrome, Firefox, etc., except for one user, where it crashes in Chrome, but not in Firefox. I've installed Visual Studio on that user's machine, ...
2
votes
1answer
198 views

Firebreath NPAPI Plugin How to Log

How to output log messages with an NPAPI plugin built with FireBreath in C++. The log should be available during development and test and/or in Debug builds. Modified: The FireBreath way to log is ...
0
votes
1answer
44 views

NPP_New not getting called in few webpages (Chrome and Safari)

I am trying to access NPAPI plugin from content/inject script of Chrome/Safari extensions. The code to embed the plugin object and access methods. var newElement = document.createElement("embed"); ...
1
vote
1answer
40 views

How can I check if an application or WebView has the appropriate permission to invoke a plugin in Android?

I have a netscape-based(NPAPI) plugin packed in a .so file inside an apk. Various WebViews may invoke this plugin, if their webpage has the required MIME type. But, I also want to restrict the ...
0
votes
1answer
100 views

How cast HWND to NSWindow * in FireBreath?

Is there any way to cast HWND FB::PluginWindowWin::getBrowserHWND to NSWindow *? The reason why I need this, is to interact with Browser window, from my Cocoa app for OSX, (like open sheet on ...
0
votes
0answers
20 views

NPAPI plugin filter response [duplicate]

I'm writing an NPAPI plugin in C++ on Windows. Can I filter traffic with my plugin? For example, I made request to site http://site.com <html> <head> <title>NPAPI ...
0
votes
0answers
58 views

Deadlock when adding COM GUI component to HWND of other process (Firefox, Plugin, IExplorerBrowser)

I am trying to embed an IExplorerBrowser (the main GUI of Windows Explorer) into a Firefox XUL or HTML page. The instance of IExploerBrowser is created using js-ctypes in the Firefox-process ( with ...
0
votes
1answer
64 views

Inject JS file from FireBreath plugin?

I have FireBreath plugin, and some JS file in it. What I'm trying to do, at some point , inject that JS file using plugin. How is it possible to inject that js file using plugin? If you can please ...
2
votes
1answer
69 views

How to get an NPP instance in a Firebreath plugin?

From within a class derived from FB::PluginCore (or FB::JSAPIAuto), for example in onPluginReady() or a JS method handler, I'd like to have access to the NPP instance. What is the best practice for ...
2
votes
0answers
101 views

Adding window.bluetooth object to Chrome

I want to demo a web page being used to interact with a physical object in the same proximity as a web-enabled device (Mac/Windows/Linux laptop). In order to do this, I want to create my own ...
0
votes
2answers
61 views

MIMEType association incorrect for FireFox?

I'm working with an existing ActiveX control, we have a NPAPI for it, and it works well for the most part in FireFox. It supports viewing image types, one type, TIFF works well but for some reason ...
-1
votes
1answer
120 views

How to package a NPAPI Plugin with a firefox add-on [closed]

I have made an add-on by https://builder.addons.mozilla.org/ which have a context-menu: require("sdk/context-menu").Item({ label: "share", contentScript: 'self.on("click", ...
0
votes
1answer
56 views

Using NPAPI( libflashplayer32.so ) and OpenGL together

I am building a 3D application by using OpenGL for Linux systems. I also want to use flash with it. On Windows , you are able to render a flash file to an off-screen target , create a texture from it ...
0
votes
1answer
53 views

multiple expected identifier or '(' before ':' token when compiling android_npapi.h file

As stated above the android_npapi.h provides multiple errors of the above type at this point: struct ANPInterface { uint32_t inSize; // size (in bytes) of this struct }; enum ANPLogTypes ...
0
votes
1answer
105 views

How can a npapi plugin get the WM_ACTIVATE message from the browser?

on Windows Platform, When I switch to another window,the Browser Will receive a WM_ACTIVATE message. Is there anyway to pass the WM_ACTIVATE message to the plugins? I have tried the ...
0
votes
1answer
92 views

Detecting NPAPI support using JavaScript

How can you detect if a browser supports NPAPI from JavaScript? Not all of them do, and whilst I could rely on the user-agent I'd much rather do it a more reliable way if one exists. Unfortunately, I ...
0
votes
1answer
93 views

how to convert from NPVariant* to char*?

I have NPAPI plugin method which recieves NPVariant* I need to convert it to char*, I heard NPVariant does not end with NULL character so before I process the argument I need to convert it to char* , ...
0
votes
0answers
63 views

My bank is getting certificate from usb-flash without using ActiveX/NPAPI etc [closed]

My bank ( VTB from Russia ) can get certificate from my usb-flash. I wonder how it could be? As I remember all browsers are in sandbox model and browsers don't allow directly obtain some drive on PC. ...
0
votes
0answers
77 views

How to get (winID) Browser's window in windowless plugin

I have a question regarding windowless plugin. I have a transperant windowless plugin. My application wants to make a part of browsers window which the plugin uses as transperant. For this I need ...
0
votes
2answers
79 views

NPAPI : How to read the return NPError value of NPP_New in javascript

We are developing a Netscape plugin for Safari in Mac I have a scenario in which the initialization done in NPP_New function fails and I am returning NPERR_GENERIC_ERROR. How can i read this error ...
0
votes
1answer
50 views

StatusBar not updating in FireFox?

I'm working with an existing ActiveX control, we have a NPAPI for it, and it works well for the most part in FireFox. There's an issue with it and I'm completely unfamiliar with NPAPI. In IE9, the ...
0
votes
1answer
48 views

What is the use of NPDrawingModelAsyncBitmapSurface in Mozilla NPAPI AsyncDrawing?

Mozilla exposes an AsyncDrawing API, that enables hardware accelerated rendering in an NPAPI plugin. While the NPDrawingModelAsyncWindowsSharedSurface mode requires Vista and higher, the ...
0
votes
1answer
51 views

How to stop media buffering in NPAPI plugin

I wanted to stop the buffering of media data in my NPAPI plugin. My plugin is wrapper written on top of the Adobe flash NPAPI plugin. Which call I shall call to Adobe NPAPI plugin so that it willl ...
0
votes
1answer
52 views

NPAPI mac plugin sharing commands with browser

I have a NPAPI plugin running in Safari, Chrome and Firefox. I'm able to handle all key combinations with the event callback, but the problem I'm having is with certain key combinations. In the ...
0
votes
1answer
234 views

Simple npapi plugin gives “no plug-in available to display this content” error message

I've downloaded the sample from http://code.google.com/p/npapi-chrome-plugin-helloworld-example/ Do not worry about building from the source, the built .dll and the manifest and a test.html is in the ...
0
votes
1answer
96 views

NPAPI plug-in in safari can not call js function?

all.I want to call a js function to show something in my plugin.This is my code NPObject* npwindow = NULL; NPError ret = browser->getvalue(mInstanceForJS, NPNVWindowNPObject, &npwindow); ...
0
votes
1answer
84 views

How to get postdata attached to http request using npapi plugin

Is it possible to get postdata of post request using npapi plugin. We can easily access the url, cookies etc. using plugin, but what about post data! FB::DOM::WindowPtr window = ...
0
votes
1answer
58 views

Plugin instance deleted when changing its 'position' style attribute in Webkit

I'm struggling with a strange (Webkit-specific?) effect: When changing the 'position' attribute of a plugin object, my plugin is deleted and immediately replaced by another freshly instanciated. This ...
0
votes
1answer
40 views

does NPP_Write processes content before delivering it to plugin instance?

The code below should be self explanatory NPP_PostURLNotify() //post to a URL that returns a pure java script code NPP_WriteReady() NPP_Write() // when the browser calls back this function does ...
0
votes
1answer
336 views

Unable to load npapi helloworld plugin as extension in chrome browser

Downloaded the NPAPI hello-world plugin from https://github.com/axgle/npapi-chrome-plugin-helloworld and packaged it as a chrome extension (crx) using Chrome developer mode. Loaded the above ...

1 2 3 4 5 10