Tagged Questions
The mozilla-plugin tag has no wiki summary.
5
votes
2answers
748 views
JavaScript Event Listeners for when the DOM changes
I'm writing a Mozilla Firefox Extension (Javascript without the BS of having to identify if it's IE or Firefox), where I find myself stuck in the following situation. On a page load, I add event ...
5
votes
2answers
145 views
Setting html controller to right side in firefox extension
I am creating Mozilla extension.
Here I need to set button controller right side in extension.
Here I divide XUL file to div element. I have take a main div element and inside this i have take two ...
3
votes
1answer
348 views
How can I display text over toolbar button for a firefox addon?
I'm trying to display a small text (new messages count) over icon in toolbar button, something like Chrome and Opera extensions have with badge over the toolbar icons. Text should not cover the whole ...
3
votes
1answer
375 views
Has anyone got a simple step by step Mozilla plugin tutorial
I'm trying to create a Mozilla browser plugin for the sole purpose of detecting with javascript whether or not an application that I have written is installed. This was inspired by another ...
2
votes
1answer
105 views
Firefox Extensions: What variables are available in extension scope (like window, gBrowser)?
I know about window, gBrowser, gContextMenu and some more but what are all global variables available to Firefox extensions?
2
votes
2answers
73 views
Comprehensive JavaDoc-like documentation for Mozilla/Firefox extension developers?
Is there any thing like JavaDoc for Mozilla/Firefox that helps extension developers?
For example where can I find what delayedOpenTab() does and how to use it?
2
votes
2answers
171 views
Why does Firebug show duplicate $_POST requests?
I've had this problem for a while: When I use jquery $.post, I see LOTS of requests in the Firebug console that are exactly the same, and only the last one returns anything. If I click on the plus ...
2
votes
1answer
208 views
Mozilla “Jetpack” Add-On: Anchor Panel to Widget
I'm making a Jetpack extension in which a widget opens a panel. Clicking the widget opens the panel as expected (anchored in the lower-right corner to the widget). But if I call widget.panel.show() ...
2
votes
1answer
391 views
porting mozilla's NSModule to Delphi
In extension to this question, I guess I'll best show what I've got so far.
What I'm trying to do is create a FireFox plugin with Delphi, that'll work with the FireFox versions of the future that will ...
2
votes
2answers
109 views
What is a MIME type?
I have been reading about how to build plug-ins and this "MIME type" keeps getting discussed in it, i have tried to look into and know that its Multipurpose Internet Mail Extensions (MIME) but no ...
2
votes
3answers
202 views
Audio Files : Security concern; how to prevent unauthorized downloading of audio files from a server
For a church website I'm managing, there is a need to place audio files (sermons) on the website. There will be two categories of audio files; one will be a sample size of the audio file, around 5 ...
2
votes
10answers
351 views
I need some tool to view Http Request
It's probably some browser plugin or a proxy.
For example, I open google.com, and type something and press 'Search'. And I want to see all params of http-request (like, method, domain, params etc)
2
votes
0answers
165 views
Color Blindness Simulator [closed]
Possible Duplicate:
Colour blindness simulator
Can anyone recommend a good development tool for testing the affects of colorblindness in applications?
A search of SO and Google didn't come up ...
2
votes
4answers
1k views
Writing a firefox/netscape plugin
I am in the process of writing a firefox/netscape plugin (not extension) to run on windows, and I was wondering if you could suggest any sites for guidance and tutorials?
I have been looking through ...
2
votes
2answers
601 views
Basic sample of a scriptable plugin for FireFox in C++ with VS2005/8
My experience to write a plugin for FireFox is below zero. Is someone out there who could point me to sample code on how to get this accomplished in C++ with VS2005/8?
What I need to do with ...
1
vote
1answer
74 views
Firefox-Addons/Jetpack: Page-Mod of Non-HTML Files
I am trying to start writing a basic firefox addon that allows the correct display of markdown files.
Unfortunately I can't even get the first step of the process to work.
I have a basic
var ...
1
vote
1answer
98 views
Firefox, Mozilla validator error
I am getting this one error when I use the Mozilla validator:
This is the JS file:
const STATE_START = Components.interfaces.nsIWebProgressListener.STATE_START;
const STATE_STOP = ...
1
vote
5answers
2k views
How can I “hack” the Thunderbird Lightning plugin to fully color categories
(Note: While I'm not entirely sure if this be better asked on SuperUser, I guess the fact that you probably will have to mess around in the xpi/jar file with the css settings, should make it suitable ...
1
vote
1answer
164 views
Firefox add-on doesn't work with tag <em:updateURL>
I have a custom Firefox add-on. It worked ok, until we decided to make it self update-able.
According to manuals at mozilla.org, there should be an <em:updateURL> entry in add-on's install.rdf, ...
1
vote
1answer
317 views
How to convert an unicode JavaScript string into a byte array using Mozilla services?
I have a service writing remote files, but it requires a byte array as input. Rest of the interface provides only JavaScript unicode strings. No way to write them then.
I found something like this in ...
1
vote
2answers
378 views
Calling a dll function from JS XPCOM
I wanted to know if the XPCOM JS can call an external dll function ?
I have a dll that exposes certain functions. I want my XPCOM JS function to be able to call the dll function. Is it possible ?
1
vote
1answer
194 views
Building and installing Mozilla signtool on Windows 7
Can anyone either point me to (or provide here) a clear, step-by-step approach that will get Mozilla's signtool (distinct from the Windows program of the same name) installed and working in a Windows ...
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
490 views
Creating Your Own Firefox Add-in with Visual Studio
I need to develop an add-in (as a bar) that will monitor user browsing data using Mozilla Firefox (priority) and other web browsers (Chrome, Safari, etc.).
I have already done this using IE, but I ...
1
vote
3answers
145 views
getting web page data as json object?
I have a url, the data of which page i need as a json object.
I ve tried xmlhttprequest and ajaxobject both but doesnt work. It doesnt even give a responseText when I give it as an alert
Ill post both ...
1
vote
1answer
55 views
Cut and paste out of/ into text fields in a separate window doesn't work
I have a Macintosh Mozilla plugin which puts up a separate window for login information.
It seems to work fine, it gets keyboard events like typing and hitting
return to hit the default button. ...
1
vote
3answers
2k views
Firefox Cocoa Plugin
I`ve created simple hello world-like plugin which draws red box.
Аfter embedding into xulrunner application the plugin works almost fine. Xulrunner application successfully redraws the box on ...
0
votes
1answer
44 views
Callback using CustomWndProc for Message Only Window Handle
I am developing a NPAPI plugin using firebreath. I am using a third party dll to integrate to a gaming device.The inputs on the devices are propagated to the plugin through a message only window(HWND) ...
0
votes
1answer
48 views
Can a Mozilla/GoogleChrome Plugin written in C++ be decompiled?
I have some proprietary algorithm that I want to use it on the client side for which I zeroed on doing it in C++ ( using XPCOM in Mozilla and Native Code in Google Chrome ) compared to doing it in ...
0
votes
3answers
80 views
Text Area content not updating in Mozilla Firefox
I have created a HTML document with following code..
<html>
<head>
<title>My Page</title>
</head>
<body>
<textarea id="main">
Hi this is sample content
...
0
votes
2answers
850 views
How to test android based mobile pages on web browsers with the help of plugins?
I want to test android mobile based pages on browsers like chrome or mozilla. Is there any plugins available so I can directly test them on these browsers without running them on device or emulator?
...
0
votes
0answers
44 views
Content::SateChanged is not working on fennec when a page is loaded on new tab?
Basically I am trying to parse the dom present in the new tab of fennec-4.0b3, for this I am listening "Content::SateChanged" when a page is loaded in the new tab I have followed this link for ...
0
votes
0answers
141 views
$Proxy0 cannot be cast to org.mozilla.interfaces.nsIWebBrowser
Getting this exception while trying to use Mozilla browser.
On trying to search in net, got that it is trouble with the build, but I am not able to fix it.
Any input.
0
votes
0answers
389 views
Could not instantiate Browser: error with mozilla Browser
When I am trying to test an mozilla based eclipse application, I am getting the following error -
Could not instantiate Browser: No more
handles [Could not detect registered
XULRunner to use]
...
0
votes
0answers
108 views
Firefox Add-On Language Detection
I have written a firefox add-on and localized it for different countries.
e.g. made sure that /locale/: en-CA has the Canadian Google.ca ;)
Now the problem:
A canadian User wrote me, that he always ...
0
votes
1answer
112 views
unresolved external symbol _NPN_MemAlloc referenced in function
i develop extension for Chrome using XPCOM and i try communicate my dll with JS all fine ! but if i try return value ( string ) from my cpp code i have crash my browser ((( me need allocate memory ...
0
votes
1answer
264 views
why does this JavaScript function stop execution?
I have the following JS function which serves as a first prototype for a mozilla thunderbird extension.
The goal is to connect to a server and download a sample file, then unzipping it and storing the ...
0
votes
0answers
236 views
Reverse DNS lookup within a JavaScript firefox plug-in
I've written a firefox extension which is really a firebug extension -- it adds a panel to firebug. All is working pretty well, except for one item.
I would like to reverse look-up an IP address to ...
0
votes
1answer
60 views
How can i use XML to store and retreive data?
well i m creating an extension for mozilla which transliterates a given web page!! so i wanted to know how am i going to send the webpage to the server and get it back transliterated using xml!!
0
votes
1answer
178 views
how to uninstall mozilla extension from command line?
HI,
i have installed mozilla extension by double clicking abc.xpi file. Now I want to know where those files are copied, so that i can delete them ?
OR anyother way to unistall extension except by ...
0
votes
1answer
113 views
Mozilla addon development - Tab focus granting event
I need to capture tab focus granting event in Mozilla Browser. is there any type of listener implement for this event?
Thanks,
Chandnaa
0
votes
1answer
118 views
import on csv to sqlite3 crashes
I have a csv file that is comma delimited. I have no problem with the importing aspect of it except for when the import reaches a line like this:
1,2,3, Canada's,5, 6,7
The import crashes when it ...
0
votes
1answer
92 views
Using nsIZipWriter or other to compress a string as a string?
I need to be able to take a javascript string, compress it using any fast and available means and get back a binary string/blob.
Background:
The extension I'm developing needs to send various large ...
0
votes
1answer
90 views
where can i find simple example of Mozilla plug-in that mimic firebug element inspection function
Hello all
im interested to learn how does firebug implement the "element inspection function"
i do not have experience in firefox development but i am experience developer .
im trying to avoid ...
0
votes
1answer
140 views
Spidermonkey pointing to a NSPR/DIST directory, HELP!
I've been trying to cross-compile Spidermonkey and I am stuck with the problem wherein prtypes.h(NSPR) is unrecognizable. I alread triedy modifying Makefile.ref/config.mk/jsconfig.mk to point to a ...
0
votes
1answer
202 views
Mozilla extension: create tab/window with DOM document instead of URI?
I have a web service that requires special headers to be sent in the request. I am able to retrieve expected responseXMLs using an XMLHttpRequest and setRequestHeader().
Now I would like to create a ...
0
votes
1answer
437 views
Actionscript Virtual Machine 1 - Inspecting Memory
How do I go about determining what is currently in the Mozilla Flash Plugin memory for AVM1? I am trying to debug a large application we have built and need to see what is getting garbage collected ...
-1
votes
1answer
51 views
Mozilla addons: My dev account has been hacked [closed]
My dev account at Mozilla has been hacked and my addons deleted.
My email has been changed there as well so I cannot do a password reset.
Please advise as to who and how do I fix this?
Thanks in ...