Tagged Questions

11
votes
2answers
562 views

Check if a Firefox 3.5 add-on is enabled

In order inform the user of possible conflicts, I'd like to have my add-on check if another add-on is installed and enabled. If so, I can disable either it or my own at the user's bequest: function ...
7
votes
1answer
845 views

Help me create a Firefox extension (Javascript XPCOM Component)

I've been looking at different tutorials and I know I'm close but I'm getting lost in implementation details because some of them are a little bit dated and a few things have changed since Firefox 3. ...
5
votes
1answer
324 views

How can I implement a content converter in Firefox for all page elements?

I'm attempting to port over an Internet Explorer plugin to Firefox, but I'm not sure where to look for what I need. Basically I need to be able to filter all content that is received by the browser ...
4
votes
1answer
188 views

Using XPCOM components from Mozilla Add-on SDK

I have worked on Mozilla Add-on Development in the past(Beginner Level). But on encountering XPCOM, i got really scared and left it in the middle. Recently only I encountered Add-on SDK and found it ...
4
votes
2answers
282 views

Firefox extension development firefox4

So I've been working on updating old extensions for use with FF4 and Gecko 2 but I am having some issues where I am getting an error that says, classID missing or incorrect for component.... Has ...
4
votes
2answers
401 views

Beginner Assistance - Where does this code belong?

I'm trying to develop a firefox extension that inserts additional HTTP header fields into outgoing HTTP requests (to interface with an apache extension i'm concurrently developing). While I ...
3
votes
2answers
44 views

Javascript type conversion

I'm writting a Firefox extension. Using javascript, I want to download a binary file from a web POST, and then I want write its contents into a file. My difficulty is how to convert from the type ...
3
votes
0answers
89 views

XPCOM Socket is closing. How to keep it alive?

I'm currently developing a firefox add-on that is a client who connects using TCP sockets to a server. In my little test everything works ok, the client(ff add-on) connects to the server(designed in ...
3
votes
2answers
169 views

Selenium: enable XPCOM access and write to a file from Javascript in Firefox

In this question there is an example how to request XPCOM access from Javascript: How to create a file using javascript in Mozilla Firefox ...
3
votes
4answers
480 views

Expose an XPCOM component to javascript in a web page

I'd like to write a XPCOM component that gets exposed as a javascript object in a web page. Something like Google Gears is what I'm seeking. That is, after installing the Google Gears Firefox ...
3
votes
5answers
645 views

Browser Cache API for non IE browsers

IE has WinInet API, such as GetUrlCacheEntryInfo, to read and manipulate IE browser cache. Is there a similar API for non IE browsers such as Firefox or Chrome? If so where can I get more info? ...
3
votes
1answer
952 views

http-on-examine-response observer - possible to block response from further processing?

I am attempting to implement a firefox extension which filters incoming HTTP responses and handles them accordingly. I wish to block HTTP responses containing a specific header. Having read through ...
2
votes
1answer
93 views

Storage Options with Mozilla ADDON-SDK

I am a newbie to Addon-SDK. I am making an Addon in which i log some information meant for manually viewing later on. I came across the Simple-Storage API but as far as i could figure out, it saves ...
2
votes
2answers
83 views

SQLite Storage in Firefox 3.0 +

I have a Firefox extension that supports Firefox 3+, and SQLite database is important for my extension. I saw on the MDN that the API might change and it`s "unfrozen", should I be worried about it? ...
2
votes
2answers
269 views

How to overwrite built in XPCOM component in Firefox addon?

I'm taking a foray into Firefox extension development for the first time, and so far it's been pretty comfortable going, but I'm running into a problem; one of the things I need to do overwriting the ...
2
votes
2answers
245 views

XPCOM: sniff HTTP responses

I would like to write a little component with XPCOM that can sniff all HTTP responses received by the browser. Right now the only examples that I can find (like the one appended below) only allow me ...
2
votes
2answers
188 views

How to preprocess HTML before it's loaded and parsed by Mozilla?

I need a way to process HTML before it's actually loaded and parsed by Mozilla. Is there any content listener that I can use in my Firefox extension?
2
votes
0answers
275 views

XPCOM Shockwave Flash C++

I recently started "playing" with xpcom, and I would like to know if there is a way do interact with a Shockwave flash element. In IE I can use the IShockwaveFlash interface, but for the Firefox I ...
2
votes
2answers
229 views

Is there an API to disable/enable a Firefox extension?

Is there an API call allowing one to enable/disable a Firefox add-on?
2
votes
1answer
143 views

Adding entry to Firefox cache from an XPCOM component

The nsICacheSession has a method openCacheEntry() which returns an existing cache entry. Is there a method such as createCacheEntry() that will create a cache entry. I want to create an XPCOM object ...
2
votes
4answers
670 views

Problems Registering XPCOM component

I'm working on my first XPCOM component. Unfortunately, I can't register it successfully. Building is ok. Here's the makefile CXX = g++ CPPFLAGS += -fno-rtti \ -fexceptions \ ...
2
votes
2answers
5k views

How to HTML encode a string in JavaScript from a Firefox extension

So I know I can write my own HTML-encoding function like this: function getHTMLEncode(t) { return ...
2
votes
2answers
3k views

Firefox XPCOM component - Permission denied to call method UnnamedClass

Can a firefox XPCOM component read and write page content across multiple pages? Scenario: A bunch of local HTML and javascript files. A "Main.html" file opens a window "pluginWindow", and creates a ...
2
votes
1answer
792 views

Accessing Firefox cache from an XPCOM component

Does anybody know how to get local path of file cached by Firefox based on its URL from an XPCOM component?
1
vote
1answer
15 views

Mozilla XPCOM is not registered

I'm trying to build an extension for Firefox. This extension uses an XPCOM component (a C++ dll). I'm compiling the DLL, compilation is OK. The next step would be to use the component in Javascript ...
1
vote
1answer
86 views

Event Listeners to know when a page is Bookmarked/Downloaded

Is there any way to track when a page is bookmarked or downloaded in Firefox? I mean is there any event that is triggered on bookmarking or downloading a page? I am using Add-on SDK for developing ...
1
vote
1answer
177 views

FireFox 6: implementing nsIProtocolHandler

Has something changed in Firefox 6 so I can no longer add my nsIProtocolHandler (and nsIChannel) implementation from an add-on just by registering it under a contract like ...
1
vote
1answer
195 views

Firefox extension: Cancel requests and emit fake responses

I am trying to develop a Firefox extension that drops every HTTP request to a certain site and returns a fake response. No request should get through to the original web server, but I want to be able ...
1
vote
1answer
1k views

How to open .EXE with Javascript/XPCOM as Windows “Run…”?

I have an intranet web application who needs to run some external applications, like Word, Notepad and other particular ones... My code allow the access with IE (ActiveX) and Firefox (XPCOM). When I ...
1
vote
2answers
117 views

Can you check if an object is wrapped by XPConnect (Firefox)?

My scenario: I am iterating over the window object and trying to retrieve only user-defined variables/functions and filtering out native browser objects. for(var i in window) { // Right now I ...
1
vote
1answer
153 views

XPI extension with XPCOM

Does anybody knows how to make a XPI extension with XPCOM component? How can we install XPCOM component into Firefox?
1
vote
1answer
119 views

How to get the page element initiating a GET request from inside a firefox extension xpcom component?

I have a firefox extension xpcom component that listens to http-on-modify-request and gets the location of the page making the request: getLocationOfOriginatingWindow: function (httpChannel) { ...
1
vote
1answer
175 views

Windows 7 and installing files to another program's install directory - FireFox XPCOM component

I am helping another programmer build an install program that needs to locate the Mozilla program directory and install the files necessary to support an XPCOM component. My tool of choice is Inno ...
1
vote
1answer
88 views

It is possible to disassemble a Firefox XPCOM?

it is possible to restore (pseudo) code from a Firefox XPCOM DLL? I know there is a Firefox plugin called XPCOMViewer what shows me classes and interfaces and this works fine but I need more to know ...
1
vote
0answers
104 views

How to find the date when a web page was loaded in a particular Firefox browser tab?

How can I find the date when the currently loaded web page was loaded in a particular Firefox browser tab? I was hoping to get it through the nsISHEntry interface, but found no means so far. What I ...
1
vote
0answers
79 views

Custom printing from Firefox (Windows Only)

I have created a .NET Windows Forms component that runs within IE via an <object /> tag and allows me to print to a thermal label printer directly from a web page using the Windows API's to ...
1
vote
1answer
122 views

Handling crash dumps from Firefox and Google Chrome

I'm developing a cross-platform NPAPI+XPCOM extension for Firefox and Google Chrome (Windows, Linux and Mac). I was wondering if anyone could enlighten me on the best practices of handling component ...
1
vote
1answer
129 views

Firefox Plugin Domain Restriction - Similar to IE's SiteLock

I would like to know if there is any functionality in the Gecko SDK/NPAPI that would allow me to restrict a plugin-usage to restricted domains only. Exactly like SiteLock for IE does with ActiveX ...
1
vote
1answer
538 views

using eval.call() in firefox XPCOM component

I'm making an extension that on load of every page creates an instance of my xpcom component specifically for that page. I do that like this: var appcontent = document.getElementById("appcontent"); ...
1
vote
1answer
51 views

When creating a JS XPCOM Service can classID be random?

When I create a JS XPCOM service the guid that is used for the classID can just be a randomly generated string correct? following directions here? I ask because I'm forking another project and ...
1
vote
1answer
1k views

Using sockets (nsIServerSocket) in XPCOM component (Firefox Extension) (sockets + new window = seg faults)

PLEASE READ THE UPDATE #2 BELOW IF YOU ARE INTERESTED IN THIS PROBLEM ;) Say I put this code into the JS of my extension. var reader = { onInputStreamReady : function(input) { var sin = ...
1
vote
1answer
49 views

Advice on implementing my own console as an XPCOM

I want to use my own console for my extension, where I would be printing out various debug info. I thought I would do that by doing window.open("chrome://myextension/content/console.xul".. and then ...
1
vote
1answer
320 views

How to listen to profile-after-change in XPCOM component for FF4

This blog post mentions that XPCOM components will no longer be able to observe 'app-startup' notifications and they will have to listen to 'profile-after-change' notifications now. My changes don't ...
1
vote
1answer
92 views

How to register an nsIModule DLL on Windows

I've created a Windows library with an implementation of nsIModule (and nsIProtocolHandler) a while ago. I've only recently got round to debugging it some more, but FireFox doesn't run my library any ...
1
vote
2answers
803 views

iFrame in Firefox hidden window with a contentWindow.history?

I'm trying to run a hosted script with content privileges in my Firefox extension. To do this, I create a content iframe in the hidden window pointed at a html file that pulls the script. This script ...
1
vote
1answer
499 views

Is it possible to delete or invalidate gecko / firefox session without closing browser?

Is it possible, using the gecko / firefox XPCOM interfaces, to delete or invalidate a user's active session without closing the browser? I am using Gecko embedded (specifically GeckoFX) in an ...
1
vote
2answers
536 views

Detecting Firefox extension version

I have a Firefox Extension that I would like to populate the About box with the version within install.rdf. I know that FUEL's extIExtension allows one to see the version for an extension but I did ...
1
vote
2answers
1k views

NS_ERROR_XPC_GS_RETURNED_FAILURE error code

I'm developing extension for Firefox which calls XPCOM component writen in C++ and I get this error: [Exception... "Component returned failure code: 0x80570016 (NS_ERROR_XPC_GS_RETURNED_FAILURE) ...
1
vote
1answer
1k views

Writing a Firefox Extension that uses XPCOM components?

I'm trying to write a Firefox extension that writes Firefox's history into the Windows system history, which ought to be useful for folks at work who use IE and Firefox to get work done. Adding pages ...
1
vote
1answer
942 views

Writing a Firefox XPCOM plug-in with a native window interface? (like ActiveX control)

I have an ActiveX control that works fine in Internet Explorer and the ActiveX Control Test Container program. The actual behavior of the control is split in two parts, where one part is the ATL gunk ...

1 2