Tagged Questions
0
votes
1answer
70 views
Firefox 22 Monitor HTTP traffic in extension
I am currently trying to write a simple Firefox addon for monitoring http traffic.
I searched around a lot and also found some things, but everything was related to Firefox 3.6 and I do not know how ...
0
votes
1answer
60 views
Firefox XPCOM extension not working after installation (C++)
I have implemented a protocol handler extension in C++ using Gecko SDK. When the dll is copied to C:\Program Files (x86)\Mozilla Firefox\components every thing works perfectly. But when the the same ...
0
votes
1answer
2k views
Compile Firefox add-on in Visual Studio 2012 [duplicate]
Possible Duplicate:
Compiling a MFC app from Visual Studio 2010 to 2012 RC results in LNK2038
I am moving an XPCOM Firefox add-on project from Visual Studio 2010 to Visual Studio 2012. ...
1
vote
1answer
141 views
Why do I get error C2440 when I try to compile XPCOM code?
I need to create a Firefox addon that calls C++ code. I did some research and found this tutorial to get me started: http://briankrausz.com/building-a-c-xpcom-component-in-windows/
I followed all the ...
0
votes
2answers
1k views
Simple example for NPAPI plugin
I'm trying to find a simple example on how to write an NPAPI plugin that will be bundled with my Chrome extension.
The thing I need to do with the NPAPI is simply to run an already existing local ...
3
votes
1answer
119 views
How to check if Javascript is activated from Firefox extension?
I haven't found any info on that. I basically need to know from a Firefox extension if the browser has javascript enabled. Is that possible?
I am totally new to programming FF extensions -- ...
1
vote
0answers
217 views
Efficiently streaming audio samples retrieved from a java object in Gecko (firefox extension)
I am writing a firefox extension which needs to play a certain PCM stream. The samples are retrieved from a java module over LiveConnect:
Java code:
public class Synthesizer
{
...
public
...
0
votes
2answers
438 views
Firefox 6 :Problem with QueryInterface(nsIDOMWindow::GetIID() in XPCOM component, for browser content window passed from js
I am working on adding support for Firefox 6 for my add-on on Mac OS, where the following logic is working in Firefox 4,5 versions but fails in Firefox 6.
XPCOM component has subclass of ...
2
votes
1answer
172 views
Is there a plug-in sample for Firefox 5 written in C++?
I've seen several examples, but for libraries with Gecko 1.9.2 or earlier, how do I create a plugin for Firefox 5 in C++?
The strange thing is that the official website just to gives me examples for ...
0
votes
1answer
492 views
Preventing Browser Location Change in xulrunner
I've been reading and hacking around with https://developer.mozilla.org/en/XUL_School/Intercepting_Page_Loads but can seem to do what I need.
I'm working on Chromeless, trying to prevent the main ...
2
votes
1answer
919 views
HTML DOM Parse and Character encoding on XMLHTTPRequest at Firefox extension
I am now writing firefox 4 bootstrapped extension.
The following is my story:
When I'm using @mozilla.org/xmlextras/xmlhttprequest;1, nsIXMLHttpRequest, content of target URL can be successfully ...
0
votes
0answers
67 views
Firefox V7 ready pluggins/extensions?
Trying to catch up with an FF Extension and making it work for Gecko 2.0 FF 4.0
While working on building the 64 bit Gecko 2 SDK I come across some articles like this FF 4->7 by end of 2011 and ...
0
votes
1answer
505 views
Firefox add-ons and page HTML content change events (Google Reader)
I am new to Firefox add-on development and planning to write a Firefox Mobile add-on which would optimize some page content to be more suitable for viewing on mobile devices.
I have studied how to ...
1
vote
2answers
813 views
Passing parameters between javascript asynchronous callback functions
I want to use the execAsync function here:
https://developer.mozilla.org/en/Storage#Asynchronously
and I want to pass values between handleResult and handleCompletion. Something like
...
0
votes
1answer
227 views
Localizing extension descriptions before Gecko 1.9
I'm trying to build an extension for Firefox with localized name basing on information from https://developer.mozilla.org/en/Localizing_extension_descriptions (Localizing before Gecko 1.9), but it ...
0
votes
3answers
462 views
How to convert anything to a String safely
If I have:
var test = {toString: function(){alert("evil code"); return "test";}};
how can I convert test to a string? without calling test.toString() and without using a typeof x == "string" check ...
0
votes
1answer
253 views
Gecko NSModule: ContractIDEntry “nsID const *”?
I created a FireFox addon a while a go, and noticed it stopped working on FireFox 3.6
Apparently, NSGetModule is being replaced with an NSModule structure, so I have to adapt.
I'm coding my product ...
2
votes
3answers
736 views
Creating a document from a string in Gecko
I have a string such as
<html><body><div id="message">Hello World!</div></body></html>
and I would like to get the content of the #message element without parsing ...
3
votes
3answers
850 views
What does XPCSafeJSObjectWrapper do?
What does Mozilla's XPCSafeJSObject wrapper actually do?
MDC's documentation is as follows:
This wrapper was created to address some problems with XPCNativeWrapper. In particular, some extensions ...