Tagged Questions

Browser-plugins allow to display content in browsers that they don't support natively. The two major APIs are NPAPI (supported by all browsers except Internet Explorer) and ActiveX (for so called content extensions for Internet Explorer).

learn more… | top users | synonyms

11
votes
8answers
14k views

See trace() of Flash when running in browser

Whats an easy way to see the trace() of Flash/Flex movies when running in any browser?
10
votes
4answers
4k views

How to write a browser plugin?

I'm curious as to the procedure for writing browser plugins for browsers like Chrome, Safari, and Opera. I'm thinking specifically of Windows here and would prefer working with C++. Are there any ...
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 ...
6
votes
2answers
304 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
10answers
581 views

Best of both worlds: browser and desktop game?

When considering a platform for a game, I've decided on multi-platform (Win/Lin/Mac) but can't make up my mind as far as browser vs. desktop. As I'm not all too far in development, and now having ...
3
votes
1answer
117 views

Detect if Google Chrome block Java plug-in

The Google Chrome block Java plugin until you explicitly allow it to run. https://www.google.com/support/chrome/bin/answer.py?answer=1247383&hl=en-US How can I detect in javascript if Chrome ...
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
895 views

How does the Roozz browser plugin achieve it's cross platform capability

I came across the browser plugin from roozz.com and I tried it out with LinqPad, try it here. They say there is a conversion process that takes basically any exe and converts it to their platform ...
3
votes
2answers
541 views

How to use firefox “hello world” sample extension?

I downloaded this firefox sample extension from mozilla.org, I modified the file install.rdf and changed maxVersion value to 3.6.10 (also tried 3.6.*, 100 and *) and I added a new sting with name ...
3
votes
2answers
387 views

Is there a way to override maxVersion check on a firefox extension?

Is there a way to override the use of maxVersion in firefox extensions so if a new firefox update comes out the extension will still work? I think this can be done by setting a new bool in ...
2
votes
1answer
168 views

Web 3D GIS solution

I want to find a web 3d gis solution which provides: server software to store and serve terrain and 3d models a plugin to display on browsers javascript api to interact with the plugin deploy on ...
2
votes
1answer
436 views

How does Unity3D's web-deployment work?

It's very slick and cross browser/platform at the click of a button, which is leading non-technical types to conclude the entire engine is intrinsically better than what we use now. Is it simply that ...
2
votes
3answers
276 views

how to link to shared lib from shared lib with relative path

I'm working on a Firefox plugin that uses external libraries to render 3D graphics on the browser. The problem is that i want the plugin to use external libraries packed with it without changing the ...
2
votes
1answer
243 views

Write once run anywhere browser plugin tool/framework/language?

I'm looking to create a browser plugin which would run in all of the major browsers, the only problem is that it seems I have to re-create the plugin in every browser. Is there some tool or framework ...
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
2answers
232 views

Performance of browser plugin based RIA vs. Java Script based RIA

For my data intensive web application (heavy forms & complex reports), from performance standpoint, which is better ... a browser plug-in based RIA (say SilverLight) or Java Script based RIA (say ...
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
474 views

Can I write browser plugins with Python?

I'm thinking about writing a browser plugin, but I don't know any C. Can I write browser plugins with Java or Python? I was thinking... All those websites store cookies on my browser to identify me. ...
2
votes
4answers
93 views

browser plugin to test a site's look when migrating

I'm thinking I need a browser plugin that does the following, and if it doesn't exist, it should. I may as well say FF for now, but it could be any browser. The problem: when moving a website from ...
1
vote
1answer
37 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
1answer
82 views

Handling mime type with app, in Android browser

Is there a way to register a mimetype-specific plugin in the Android browser? for example, some programs add "application/specificformat" plugin handler, which is seen with navigator.plugins. I've ...
1
vote
1answer
25 views

Browser plugin to analyze javascript functions

Does anyone know of a browser plugin (chrome, safari or firefox) that would give me a detailed look into javascript function execution time and resources? I'm aware of FF/firebug's console.profile() ...
1
vote
0answers
43 views

Are plugins for Android's native Web Browser version dependent?

I've been trying the code Google provides with Android source code for a Browser Plugin, more specifically, following this README, ...
1
vote
1answer
153 views

How to obtain iframe html document in NPAPI

I am trying to obtain the document inside a frame. The following does not fail: NPN_GetProperty(aInstance, windowObject, NPN_GetStringIdentifier("frames"), &frames)) but the following fails, ...
1
vote
2answers
123 views

How to implement a custom digital signing for my plugins?

In a C++ application (actually a browser plugin but this isn't too relevant) I have a need for it to be able to run external processes which expose a specific interface through IPC. Sort of like a ...
1
vote
1answer
184 views

Google Voice API for web apps?

I'd like to allow users of my site to have a list of contacts and click a button beside a user to initiate a Google Voice chat session, exactly like I can in Gmail. I'd like to be able to detect ...
1
vote
1answer
382 views

IPC in firebreath (boost c++)

I need to send a string from one process to another using Boost. Actually I'm trying to create a firebreath plug-in (firebreath uses Boost in its backend) which should be capable of sending messages ...
1
vote
1answer
176 views

Writing a plugin using NPAPI + D3D. It works on Firefox, but the browser blacks out. Why?

I'm writing a plugin, using NPAPI and D3D. I just simply put a D3D sample from DXSDK and NPAPI together. I receive a HWND when the plugin starts up, and I passed it to D3D to draw. It works though. ...
1
vote
1answer
574 views

browser plugin using firebreath

i ve built the sample plugin using firebreath.. Now I m planning to write a plugin that captures all the events from a webpage. Please help how to do this using firebreath ? Thank you.
1
vote
1answer
243 views

Can you use Win32 GUI in a browser plugin?

Of course it would mean you're plugin is not cross-platform but let's focus on the technical side... Is a browser plugin (like done in NPAPI) restricted in what it can do? Or do you get fairly free ...
1
vote
1answer
225 views

Using YUI 3 Event with custom events in browser plugin

I made a plugin with Firebreath, with a custom event, and I would like to register a callback with YUI Event. Y.on( "mycustomevent", callback, pluginNode ); Does not register my callback, whereas ...
1
vote
1answer
138 views

What are the pros and cons of writing a plugin to let your C++ application run though a web-browser?

This is not a question about writing a web-app Vs a desktop app. It's a question about allowing a bespoke application to run in a browser though use of a custom plugin, effectively using the browser ...
1
vote
1answer
159 views

Firefox extensions development with mootools

My question is simple. It's feasible to develop extensions with mootools?
1
vote
0answers
182 views

How to force WebKit (in QtWebView) to use actual windows for HTML elements?

There is windowful video playing plugin (with gstreamer inside). I want things to be placed atop of it. Can WebKit be forced to use real windows for non-embeds? Can in control their z-order? ...
1
vote
1answer
73 views

Storing settings for Browser Helper Object

I have a browser helper object on IE that have some "clipboard history" functions. I have been storing settings into a file into the directory where the BHO file is (currently "$PROGRAMFILES\Common ...
1
vote
3answers
476 views

Automatic installation of browser-plugins

I've wrote NPRuntime/ActiveX plugin using FireBreath. I've done automatic installation from web-page for Firefox and Google Chrome, but I can't do it for opera and IE. Please, help me to understand ...
1
vote
1answer
36 views

Is there a replacement for browser plugin(maybe a driver?)?

The reason I don't want to go the browser plugin way is that you need to implement it for various browsers. Like xpi for firefox, browser helper object for IE. My target platform is only windows, ...
1
vote
4answers
1k views

How do I develop browser plugins with cross-platform and cross-browser compatibility in mind?

My company currently has a product which relies on a custom, in-house ActiveX control. The technology it employs is itself cross-platform by design, but our solution is obviously limited to Internet ...
1
vote
3answers
101 views

While porting a windows application to web, is it better to stick to conventional web technologies or adoping RIA is wise?

The web based application I am working on currently is a port from a windows application. This application is very data intensive. There are scores of modules and each of these modules have number of ...
1
vote
4answers
545 views

Creating a browser plugin like Flash

I would like to create a browser plugin which works LIKE flash, with embedded content from my application on the page. How would I go about doing this? Is it doable with .net applications? Thanks ...
1
vote
2answers
1k views

NPAPI plugin in QtWebKit

I know its possible to integrate NPAPI plugins with QtWebKit as its been supported since the release of Qt 4.5. My question is, should I go and design my plugin according to the Mozilla/Gecko ...
1
vote
1answer
99 views

how do I make a Flash browser app that could receive data from browser plugin or other Windows app?

in other words, suppose I want to send data, like text, programmatically from a Windows app (such as a browser plugin) to a Flash app running in the browser. Well, conceptually, an example of this ...
0
votes
1answer
29 views

Best way to develop OS free npruntime plugin

I'm going to implement a npruntime plugin which will work on Chrome, Mozilla FF(windows/mac) and Safari(windows/mac). That plugin can draw images and will have some UI control. I don't want to ...
0
votes
1answer
17 views

How to retrieve the full paths of javascript event.DataTransfer object passed into c++ npapi plugin's function?

I have a function exposed to javascript: bool handleDrop( const NPVariant * args, uint32_t argCount, NPVariant* result){ //Extract the full paths from the DataTransfer object passed into args } ...
0
votes
1answer
37 views

Do you know of any NPAPI Chrome plugin that plays local media and communicates with a web app?

Need some inspiration for such a plugin. We aim to mix media, stored locally and in the cloud, in one online experience. Access via the File API sucks badly. We need something better.
0
votes
3answers
81 views

How to safely open a dialog in a NPAPI browser plugin on OSX?

My problem: JavaScript calls into the plugin, which forks a thread that opens a NSOpenPanel (or NSSavePanel) dialog. Often this works, but sometimes it crashes on "runModal", on both Firefox and ...
0
votes
1answer
67 views

NPAPI plugin on Mac - launch another process

So - I have two main objectives for an NPAPI plugin I'm trying to create (using FireBreath). Check to see if an application is installed Launch the application (with arguments) Both of these ...
0
votes
0answers
48 views

Prevent users from opening dynamic PDF in third party browser plugin

Background I have a dynamic PDF form I've created with LiveCycle Designer that I distribute to users via my organizations website. However, I'm starting to receive feedback from some users with more ...
0
votes
1answer
44 views

Viewing CSV in Firefox

I'm working on a script that outputs CSV files, and it's a pain to try to open CSV every time I run the script to debug the next step. Is there a way to open CSV directly in firefox. I know there's a ...
0
votes
1answer
131 views

How to write a secure NPAPI plugin that would interact only with a specific chrome extension?

I want to write a chrome extension that would automatically (without user interaction) read and upload a file from the local storage based on some event. I understand this is not directly possible ...

1 2