XPCOM (Cross Platform Component Object Model) is a cross-platform component model from Mozilla. It is similar to Microsoft COM and CORBA.
0
votes
1answer
14 views
Accessing nsIAccessibleText XPCOM Interface
I am trying to use the getCharacterExtents() method on the nsIAccessibleText XPCOM Interface. Unfortunately I can not get any documentation on how to query this interface.
let accessibleService = ...
0
votes
1answer
33 views
Getting Interface Implementation of built-in Mozilla Firefox Component
I'm currently trying to develop a custom password manager in c++.
I've already developed a deployable module implementing the nsILoginManagerStorage interface, can install it on firefox and it is ...
0
votes
1answer
12 views
g++ x86_64 NS_NewGenericModule2
I am trying to do extension development, but I am running into an error linking my code -- it's not finding NS_NewGenericModule2.
Undefined symbols for architecture x86_64:
...
0
votes
0answers
32 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
0answers
18 views
How to use IMouse interface in Virtual Box?
I was trying to control the virtual mouse using Virtual box SDK which suggests using the IMouse interface and other attributes such as putMouseEventAbsolute() etc.
I am not good in java, so i was ...
1
vote
0answers
45 views
Manipulating SQLite database from Firefox Addon worker
I am developing a Firefox extension that needs to write to a SQLite database quite often (this is for some experimental purposes, not production or anything). The issue is that writing to the database ...
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 ...
1
vote
0answers
34 views
Xpcom component makes firefox crash
I am buiding a simple XPCOM component. but firefox crashes everytime when I am trying to call a method of this xpcom component.
the file hierarchy is below:
HelloXpcom.xpi
---chrome.manifest
...
0
votes
1answer
25 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] ...
1
vote
1answer
47 views
how to get the base64 string of the clipboard data?
I am building a xpcom component with JS.
I have got the clipboard data in JS, when the data type is image/png, I want to get its base64 string, my code is:
......
...
0
votes
1answer
60 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
0answers
36 views
How to call XPCOM from Javascript?
I have created a HelloWorld XPCOM component for xulrunner-sdk-17.0
Here is my chrome.manifest:
chrome.manifest
interfaces component/ISample.xpt
binary-component component/Sample.dll
However when ...
0
votes
1answer
32 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
98 views
GeckoFX How to detect webBrowser.IsBusy after Click()
On clicking an element, the browser may or may not initiate a request to load a new document.
I'd like to implement some logic that clicks an element and then waits until the next page is loaded, or ...
11
votes
5answers
135 views
What does curly brackets in the `var { … } = …` statements do?
Not sure if this is a Mozilla-specific JS syntax, but I often found variables being declared this way, for example, in add-on SDK docs:
var { Hotkey } = require("sdk/hotkeys");
and in various ...
0
votes
0answers
40 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 ...
1
vote
1answer
35 views
Get page size in extension for Firefox
I want to get the size of the page in my extension for Firefox.
Before, I used this code:
var pageSize = null,
cacheService = ...
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
0answers
48 views
js-ctypes: load a nsISupports from a Windows DLL
Is it possible to use js-ctypes to call a Windows DLL and have it return a nsISupports instance?
The Windows DLL does XPCOMGlue, but by not needing NSModule I hope I can improve the registration ...
0
votes
1answer
156 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
0answers
14 views
Need Help on Creating XPCOM…!
I want to create an XPCom, which I want to use to get Mozilla DOM, object in my C# application. I am really very new bee for this.
Can some one tell me exact steps?
Like from starting with C++ to ...
0
votes
1answer
71 views
XPCOM writeString error
I am using this function to write text to a file via iMacros addon in FireFox.
//This function writes string into a file
function WriteFile(path,string)
{
//import FileUtils.jsm
...
0
votes
0answers
28 views
javascript _proxy_jslib_handle not defined
I try to use my JavaScript code in iMacros while using a proxy. The proxy is in form of website url and I get this message.
http://imgur.com/5pvgWAt
What is this _proxy_jslib_handle ?
So how can I ...
0
votes
0answers
65 views
How to get POST data which using custom protocol handler C++
I have implemented a custom protocol handler. Now i am trying to get the POST data when a post request is made to my custom protocol.
So far i have nsiProtocolHandler::NewChannel in which i changed ...
0
votes
1answer
57 views
Use XPCOM to upload file/image on webpage
I am using an example found here. Mozilla developers
I am interested in this example.
function upload(postUrl, fieldName, filePath)
{
var formData = new FormData();
formData.append(fieldName, ...
0
votes
0answers
9 views
nsIdleService is not behaving correctly
https://developer.mozilla.org/en-US/docs/XPCOM_Interface_Reference/nsIIdleService
As soon as user is inactive for specific period nsIdleService triggers and reports idletime.
But even if there is no ...
1
vote
1answer
290 views
Javascript write file without overwrite
I am using XPCOM to read/write file(s) on my hard drive (since Java is no longer supported on FF16,17,18,+ I have to use this). I use it in my FireFox extension(s) (I use iMacros). On this document ...
0
votes
0answers
38 views
xulrunner notification from XPCOM on different thread to JS thread
I am using nsIObserverService from within javascript to subscribe to topics and nsIObserverService from C++ xpcom to push notification for topics to the UI.
I noticed that the notifications are sent ...
2
votes
1answer
122 views
XPCOM C++ multithread and javascript callback
Background
In XULRunner version belowe 12.0 it's works, but when i'm trying port it to version 12.0 or higher it crash application.
Main reason is that in sdk v12 or newer developers remove proxy ...
1
vote
0answers
40 views
XPCOM and firefox mobile
I found a lot of problems in order to develop a browser plugin for android..
I've to use several C++ libraries and so I need to write C++ code.
Can I develop a firefox mobile extension with C++ XPCOM ...
0
votes
0answers
35 views
Modifying DOM before loading in FireFox
I want to implement an extension to modify DOM in firefox before loading. Is there netscape api to do that. I looked at nsiDOMparser, but i don't think that will work. nsiTraceableChannel only allow ...
0
votes
2answers
296 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:
...
0
votes
0answers
52 views
Using pyxpidl to create header file
I was following this tutorial to create a firefox plugin.
I was not able to create header file using pyxpidl. I tried the following comment:
C:\Python33>python.exe ...
1
vote
1answer
86 views
using python tkinter for html file i/o
I have a web desktop app which writes and reads to local file system using XPCOM filepicker and it works flawlessly in firefox12. However later firefox versions (particularly current one v17) ...
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 != ...
0
votes
1answer
254 views
Running EXE from Firefox - in a certain path
I found the solution to run an executable file (.bat or .exe) from a local html page in Firefox - it is documented very well here
However, I need to start the executable in the folder where it is ...
2
votes
0answers
131 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 ...
1
vote
0answers
23 views
Mozilla nsIDownloadProgressListener doesn´t process multiple downloads
I want to develop a plug-in for firefox which send progress events to a socket server,
the following code belongs to my javascript in the plugin:
onProgressChange: function( aWebProgress, aRequest, ...
0
votes
1answer
60 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
1answer
136 views
javascript xpcom component to download weather underground weather data
I am building a javascript component for Firefox that will take in a zip code, and will return the current weather conditions.
The sample code that weather underground uses jQuery, but as I ...
0
votes
0answers
19 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 ...
0
votes
1answer
84 views
Using xpidl command to create .h
I have built Firefox from the source code, and I am trying to create a component. I try running xpidl on my .idl file from terminal
$ xpidl -m header -w -v- I $XPIDL_INC \ > -o nsIPageSummary ...
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
295 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
445 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 ...


