0
votes
1answer
45 views
How to create a Firefox add-on using Objective-C on Mac OS X?
More precisely my goal is to create an add-on (or plug-in?) which is able to communicate with my main Cocoa application using something like the NSDistributedNotificationCenter. I …
3
votes
0answers
11 views
Removing Firefox Addon prefs when a user uninstalls
Hi there,
I'm working on a firefox addon and one thing i'm unsure on is how to remove user preferences related to my addon when the user uninstalls it. The preferences get set, an …
1
vote
1answer
17 views
Accessing an iFrame’s dom from a Firefox Extension
Hi all,
I've spent a long time trying different things to get this to work but nothing does and documentation is not helping much.
I'm trying to populate a form inside an iframe …
1
vote
2answers
38 views
Firefox Addon Development : Detecting non-compatible addons ?
Few addons are not compatible with mine, so how to detect their presence and inform the user.
Thanks
0
votes
0answers
21 views
Google Analytics to track FireFox extension use
Hi all,
I'm developing a Firefox extension and would like to track its use with google analytics, but I can't get it working.
I've tried manually calling a funstion from ga.js, b …
1
vote
1answer
26 views
Accessing tabs on Firefox with a C++ XPCOM extension
What XPCOM interfaces should I use to detect opening, closing and switching of tabs and also get their associated URL from a firefox extension?
I have seen instances of code that m …
0
votes
1answer
67 views
Firefox logs invalid URL?
I'm writing an extension for firefox. Using dom.location to keep track of visited search results pages, i'm getting this url http://www.google.com/search?hl=en&source=hp&q= …
8
votes
5answers
2k views
How to use jQuery in Firefox Extension
I want to use jQuery inside a firefox extension,
I imported the library in the xul file like this:
<script type="application/x-javascript" src="chrome://myExtension/content/jqu …
0
votes
1answer
23 views
program a Firefox extension to download a page
I want to apply a regex to a page whose URL only my extension is going to know. How do I program a Firefox extension to download the page?
1
vote
3answers
66 views
open links in new tab in firefox
HI,
I am developing an firefox extension. I want all the links on a webpage to be opened in a new tab? Can some one help me with this.
cheers
0
votes
0answers
15 views
retrieving the image saved on the local drive using canvas drawWindow
Hi,
In the previous post
I rendered the webpage as image and i saved scaled the image to thumbnail and saved it on my c://. I have a collection of links that i ahve appended on a …
1
vote
2answers
22 views
Calling Javascript function from XPCOM, C++
Hi,
My goal is to catch pageloads in my component, insert some javascript into the document and then catch onFocus events. On an event i then want to call the javascript function …
0
votes
2answers
48 views
What does this code (from a Mozilla Add-on tutorial) do?
var Helloworld = {
onLoad: function() {
// initialization code
this.initialized = true;
},
onMenuItemCommand: function() {
window.open("chrome://helloworld/conte …
0
votes
1answer
49 views
rendering web page as thumbnail
Hi,
I asked this question earlier, since i am a little new to firefox extension development, the canvas thing for firefox went a little over my head. Apologies for reposting this a …
1
vote
1answer
65 views
How can I prevent Firefox showing my extension’s sidebar on startup?
If my own sidebar is left open when Firefox is closed, it is shown again on startup. I find this undesirable and would rather it remain hidden until opened manually. Is it possible …
