16
votes
5answers
2k views
How do I write a Firefox Addon?
What are some resources for getting started writing a Firefox Addon? Is there an API guide somewhere? Is there a getting started tutorial somewhere? Is there a developer discussion board somewhere?
…
13
votes
5answers
897 views
How do you sign your Firefox extensions?
I have developed a couple of extensions for Firefox, and am annoyed that it is so hard to get the extension signed. When an extension isn't signed, it says "Author not verified" when it is installed, …
12
votes
15answers
1k views
What is your favorite Firebug tip or trick?
I think every web developer loves Firefox's Firebug extension for solving CSS, Javascript or HTTP problems.
I use it very often, but I'm sure that I'm not aware of some hidden gems. What is your …
12
votes
12answers
1k views
Is there a Firefox add-on to use vim to edit textboxes?
or "How do I answer questions on SO in Firefox using gVim inside the textboxes?"
12
votes
17answers
616 views
Firefox add-ons
What Firefox add-ons do you use that are useful for programmers?
9
votes
5answers
1k views
How can I prevent Firefox’s Autocomplete?
There's several section of our site where the user needs to enter some information, and Firefox's auto fill takes over when the page loads - mostly incorrectly!
For example, there's a "Fax Number" …
9
votes
4answers
913 views
How Does FireFox Work? Source Code Walk Through?
I'd like to learn how FireFox works behind the scenes. I'd like to understand the source code and the different components but the code-base is rather large and I'm not sure where to start.
I'm …
9
votes
6answers
852 views
How To Create a Quick Minimal Firefox Extension?
What the minimum basic setup required to begin developing a Firefox extension?
8
votes
3answers
593 views
Why is array.push sometimes faster than array[n] = value?
As a side result of testing some code I wrote a small function to compare the speed of using the array.push method vs direct addressing (array[n] = value). To my surprise the push method often showed …
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/jquery.js"> …
8
votes
3answers
370 views
How To Prevent Tab Hell With Visual Studio And FireFox Debugging?
How do I keep VS from opening a new tab in Firefox every time I hit F5 to debug a web application? I would really like it to re-use the same tab.
8
votes
3answers
3k views
Javascript memory profiler for Firefox
Is there a tool/plugin/function for Firefox that'll dump out a memory usage of Javascript objects that you create in a page/script? I know about Firebug's profiler but I'd like something more than …
8
votes
9answers
5k views
Put text on the clipboard with FireFox, Safari and Chrome
In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
8
votes
18answers
7k views
How to remove Firefox’s dotted outline on BUTTONS as well as links?
I can make Firefox not display the ugly dotted focus outlines on links with this:
a:focus {
outline: none;
}
But how can I do this for <button> tags as well? When I do this:
…
7
votes
2answers
72 views
Back Button (Browser Behavior)
When the back button is pressed in a web browser, is the default action to send a get request or serve from the browsers history?
If its browser specific, what would the default actions be for …
