Tagged Questions
0
votes
0answers
15 views
How to open a standalone XUL file in firefox
Is there a platform-independant method to open a XUL file via chrome:// path without any other operation to do, knowing that I have at hand a communication with XPCOM.
All XUL files that I saw are ...
0
votes
0answers
37 views
What XPCOM interfaces does XPCOMUtils.jsm give access to?
I am viewing the source of some Firefox addons where XPCOMUtils.jsm have been imported. When I read about it on the Mozilla website it said,
The XPCOMUtils.jsm JavaScript code module offers ...
0
votes
1answer
14 views
is there an easy way to inspect/edit values stored in nsIPrefBranch?
I'm looking for a way to quickly edit and view my extension credential list (I use nsIPrefBranch to store it).
Is there any easy way to do that? I tried to look where that's stored but couldnt find ...
0
votes
1answer
26 views
XPIDL (typelib.py) type not found error
I am trying to build a Firefox extension that makes use of IDL. However, the build dies with this error:
[apply] Executing 'python' with arguments:
[apply] ...
0
votes
1answer
61 views
Firefox binary extension: nsISupports to JS::Value
I am trying to implement nsIDOMGlobalPropertyInitializer::Init().
I have an existing object (based on Google Gears) that I am trying to extend to support JAVASCRIPT_GLOBAL_PROPERTY_CATEGORY (since ...
0
votes
1answer
33 views
no effect on: appShellService.unregisterTopLevelWindow(topXulWindow); (hide window)
I overlay chrome://browser/content/browser.xul with an .xul adding a button to the main-menu. clicking it opens another ChromeWindow with a .xul-window.
var ww = ...
0
votes
0answers
41 views
ff-ext, have a real <browser> in new window (avoid XUL; use XPCOM/sdk only)
I am absolutely new to FF extension-development and reading a lot currently. Coming from Mozilla addon SDK (that i am using right now), to reading about XPCOM, XUL and how extensions are built in it's ...
0
votes
1answer
28 views
mozIStorageConnection and asynchronous lastInsertRowID
There's pointed in the docs, that we can't rely on lastInsertRowID property when working in async mode. In fact, when inserting 1K records into the database, the lastInsertRowID property is always ...
0
votes
1answer
171 views
Not able to modify POST data in Firefox extension
I am trying to implement a Firefox Extension which modify the POST request data.
Code follows, it fails where marked "Fails here!!!"
Any insight would be helpful.
...
0
votes
2answers
309 views
Access Firefox extension XPCOM object from Javascript inside an HTML page
I'm trying to get the most basic XPCOM javascript object to be accessible to the javascript I load into my webpage. I'm using the example code from this tutorial:
...
2
votes
1answer
57 views
XPCOM stub files
1- Is there any XPCOM stub files (javascript) that can be used by PHPStorm for code completion?
2- Is there any way to facilitate FireFox plugin development in PHPStorm?
3- How can I set FireFox as ...
0
votes
1answer
45 views
XPCOM in JavaScript, launchFunctionW?
I studied in an open-source Firefox plugin, I wanted to know what action does the following code snippet. I knew nothing of the code??
enter: function()
{
if (this.xpcomObject != ...
2
votes
0answers
133 views
Expose file writing to a webpage with a Firefox extension
I have a web application that my client uses for the cash registry.
What I need to do is to create a local file as the cash register's software needs to read from that file in order to print.
Until ...
0
votes
1answer
61 views
How to call a user javascript from a firefox plugin
I am very new to writing plugins for firefox. I am writing a plugin to intercept a URL protocol (I got it here: http://www.nexgenmedia.net/docs/protocol/) inside the plugin and then call some user ...
0
votes
0answers
30 views
Validate URL in firefox extension
Is there any XPCOM component available to validate a url string? I know that I can use javascript regex to do this. But just want to know whether any XPCOM component is available which will be robust ...
0
votes
0answers
20 views
Block to load javascript by firefox extension [duplicate]
Possible Duplicate:
An example of nsIContentPolicy for firefox addon?
Help me to block certain request by firefox extension.
For example, on site http://google.com html code implement js:
...
0
votes
0answers
74 views
creating an xpcom component in javascript
I am going through the tutorial on how to do this but I need some clarification, as I know it is out of date and isn't maintained all that much.
I have the typelib compiled and the javascript file ...
1
vote
1answer
85 views
Is there any compiler / compressor library suitable for Javascript 1.7 and particularly Firefox extensions?
I have looked through Google Closure Compiler and found this. it
doesn't like "const", "let" and other Javascript 1.7 tags.
UglifyJS also seems to miss support for Javascript 1.7.
YUI Compressor ...
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. ...
2
votes
1answer
302 views
how to use xpidl (header.py, typelib.py)
I am working on writing an XPCOM component. I have my idl file, it is very simple, containing only the following:
#include "nsISupports.idl"
[scriptable, uuid(4ead-ba5c-49c9-beb2=64209c7699a)]
...
1
vote
1answer
456 views
not able to access any XPCOM components
I am working through the XUL School primer on XPCOM. I am having trouble accessing components. No matter what component I try to access, for example (from MDN):
// xpconnect to cookiemanager
// get ...
0
votes
0answers
26 views
Push information to Firefox (or to addon) from local program [duplicate]
Possible Duplicate:
What's the best way to communicate with a Firefox addon
I need to push a string of text to a Firefox page or (if not applicable) an addon, from a C# dll file (which ...
2
votes
1answer
189 views
Getting mime types array in Firefox Add-on script
I'm trying to get MIME types list on a firefox extension side.
There is navigator object in browser JavaScript context.
It has mimeTypes property - list of MIME types recognized by the browser.
I ...
3
votes
1answer
191 views
replace nsICertificateDialogs from firefox extension
I'm trying to replace the nsICertificateDialogs dialog with my own implementation. I already have an extension that handles smime mails from webmail. I want to be able to use the Mozilla cert store ...
1
vote
1answer
1k views
Open a new tab/window and write something to it?
I'm using Execute JS to write and test Javascript code within Firefox. I want to open a new tab/window and write something to it and I tried
var wm = ...
0
votes
0answers
29 views
Why does Firefox 14 throw the error message “TypeError: Components.classes[cid] is undefined” when I try to run my C++ XPCOM extension? [duplicate]
Possible Duplicate:
My Firefox extension is not working. What's the structure of a Firefox extension (XPI file) that uses C++ XPCOM components?
I guess I'm not registering the dll ...
1
vote
1answer
938 views
My Firefox extension is not working. What's the structure of a Firefox extension (XPI file) that uses C++ XPCOM components?
I have tried a million different things and can't get this to work.
Inside the xpi file I have:
* content folder
-browserOverlay.js
-browserOverlay.xul
* locale folder
*en-US folder
...
0
votes
1answer
85 views
Injecting an object with nsIDOMGlobalPropertyInitializer to specific pages
I need to inject an object named "smth" to window on pages with specific URLs with nsIDOMGlobalPropertyInitializer. Is there any way to implement this? It'll be ok if window.smth returns undefined on ...
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 ...
1
vote
2answers
100 views
How can I monitor a file asynchronously in Firefox?
I want to monitor a plain text file on windows machine for changes to it. Whenever external application updates the file, my add-on is supposed to read it and act accordingly.
Going through quite bit ...
0
votes
1answer
45 views
How can i get current layout language in firefox extension with Linux/Mac?
This can be done with user32.dll on Windows. But how can i get it on Mac/Linux?
0
votes
1answer
275 views
Using a javascript XPCOM component to create a custom autocomplete box in a FireFox add-on
I've spent a few days reading over all manner of tutorials, MDN entries, and S.O. posts, and I've come to suspect that I'm missing something obvious, but I'm too inexperienced with XPCOM to spot it. ...
0
votes
1answer
1k views
How to save a webpage locally including pictures,etc
I am building an add-on for an application. The clients are paying to view some webpages and download some files out of it. They want to automate this downloading process by add-on. So instead of ...
2
votes
1answer
375 views
How to create hidden iframe/browser from JavaScript XPCOM component?
I need one hidden iframe for all opened Firefox windows.
For now I'm creating iframe inside XUL overlay, so it is created for each browser window.
I think i should use XPCOM component to have single ...
0
votes
0answers
21 views
Can an application on the user's computer be instantiated from a Firefox Extension? [duplicate]
Possible Duplicate:
How to execute a windows command from firefox addon?
For example, can I start an instance of "Calculator.exe" on the user's computer (the path to the application being ...
0
votes
1answer
226 views
Unable to use window.setTimeout in Ajax Truclient
I want to run a function in TruClient (Firefox) every 0.1 seconds using window.setTimeout:
function foobar(delay_accumulator){
if(delay_accumulator >= 100)//10 seconds
return;
...
0
votes
1answer
299 views
Can't create javascript XPCOM service for Firefox extension
I've been banging my head a against this particular brick wall now for more than two days. I am attempting to create an XPCOM service for use in a Firefox extension but am unable to initialise the ...
3
votes
1answer
243 views
The recommended way to run binary from Mozilla extension (with std I/O communication)?
I am developing a Firefox extension and would like to call an external binary from it. It would be great if I could use standard input/output to communicate, so I am looking for the best (and ...
0
votes
1answer
609 views
how to change firefox proxy settings using xpcom
I have a proxy server running on localhost (127.0.0.1) and i have grown tired of having to train users on how to switch proxies in firefox to bypass blocked websites.
I decided to write an addon. I ...
0
votes
0answers
381 views
XPCOM registration on Firefox with Gecko 12.0
I wrote a binary XPCOM component. It compiled successfully with XULRunner SDK 12.0 (Gecko 12.0) but registering it in Firefox failed! The message is:
WARN addons.updates: Update manifest for ...
0
votes
1answer
179 views
Can an standalone / external C++ executable or JavaScript create cookies for Firefox?
I need to create/update/remove cookie for FireFox browser. This cookie is a client cookie, as in it has to be created by C++ executable and it will be present on the end user machine.
How can I ...
0
votes
1answer
299 views
Replace/delete key3.db in Firefox profile from an extension
My Firefox extension needs to replace/delete key3.db in the Firefox profile, is there a way to do that? I tried to nsIFile.copyTo() but the file is not overwritten, nsIFile.remove() but it returns ...
1
vote
1answer
163 views
Calling Firefox XPCOM component from Thunderbird extension
I'm doing a Thunderbird extension that will get the stored username/password in Firefox and import those accounts into Thunderbird. This results in the need of nsILoginManager, but I'm not sure how to ...
1
vote
1answer
780 views
firefox addon packet sniffer
I want to sniff the packets with my addon. I am using this Stack overflow question as hint. My full code is this:
// This is an active module of the Add on
exports.main = function() {
var {Cc, ...
0
votes
3answers
1k views
How to read/write file with XUL?
I'm using xul to code a firefox extension, so I need to read/write from local file. How to create for example file "temp.txt" in the following directory "c:/data" ?
0
votes
1answer
341 views
Accessing memory cache items
I'm writing a Firefox extension and I need to to access items in Firefox's memory cache.
Here is the code I'm working with:
nsICache = Components.interfaces.nsICache
cacheservice = ...
1
vote
2answers
405 views
Change homepage in Firefox programatically
Which Firefox API calls would you use to change homepage in Firefox programatically?
The purpose is to create a Firefox extension that is able to cycle through a few favourite pages (this is ...
0
votes
1answer
161 views
Getting list of all entries in the Firefox chrome registry
Is it possible to get a list of all entries from the Chrome registry along with their actual physical mapping? For example, I am looking for a list like this:
chrome://browser/content/browser.xul ...
0
votes
3answers
345 views
nsIProtocolHandler and nsIURI: Relative URLs in self-created protocol
I have a simple implementation of custom protocol. It's said that newURI method takes 3 arguments (spec, charset & baseURI) and "if the protocol has no concept of relative URIs, third parameter is ...
1
vote
2answers
274 views
XPCOM object method is unaccessible from JavaScript
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.
I also succeeded in building a JS code which instanciates ...

