Chromebug is a tool for debugging XUL applications (like Firefox and Thunderbird) with Firebug-like capabilities. It is very useful for developing add-ons (extensions).
0
votes
0answers
70 views
Select options are overflowing Google Chrome Window
I have a long HTML select options list that overflows chrome browser window (See attached). This only happens on Chrome on windows. The select is located in a modal box. Reducing the options font ...
1
vote
0answers
186 views
How to use Chromebug or Firebug to debug an Add-on SDK extension panel [duplicate]
Possible Duplicate:
Firefox extension debugging
Some topics note that Chromebug can be used to debug Add-on SDK extensions. I just installed it but cannot get it to work. I am starting ...
2
votes
3answers
332 views
Firefox SDK Extension Builder - inspecting / debugging html and dom of panels
How do you debug panel's html?
2
votes
1answer
144 views
How to use Chromebug to debug Thunderbird 9 extensions
I'm running Thunderbird 9, trying to write my first extension. I've been to http://getfirebug.com/wiki/index.php/Chromebug_User_Guide which says that I need to install exactly the same version of ...
2
votes
0answers
236 views
Chromebug - debug firefox extension with “components” folder
I want to debug some Firefox extensions. I tried with two debugging tools - Chromebug and JavaScript Debugger (Venkman).
One of the extensions has the following structure:
components folder
...
2
votes
1answer
2k views
Facebook connect login window locking in Chrome
In the past week or so I have been getting some very odd behavior with my Facebook Connect functionality. Thus far, I can only duplicate the issue in Chrome (version 13.0.782.112 m). Everything ...
5
votes
1answer
3k views
checked=“checked” not rendering as checked radio button in Chrome
If I insert some html via js after the doc.ready than checked='checked' radio button doesn't render as checked in Google Chrome
also, I noticed that if I remove the name attribute from the input ...
2
votes
2answers
397 views
Drawing text gotchas in Chrome
Please open the sample code at http://jsfiddle.net/vnvJM/1/
It has three canvases A, B and C. 'A' is the control canvas. In B you will notice that scaling translates B in x and y direction, but in ...
1
vote
0answers
585 views
Chrome-html select doesnt recognize value if keyed in
I have an address form with select option for list of states. If i key in (tab and focus on the state dropdown, then key in "I" ), it shows Idaho as selected, and when I submit form it shows no value ...
1
vote
2answers
842 views
Debug javascript of firefox extension in Firebug
I'm trying to debug my firefox extension in Firebug. When there is error in the code, Firebug pauses on the code and I can jump to the code that caused error. The problem is when I want to set ...
1
vote
3answers
421 views
Inspecting firefox with firebug
Using ColorZilla I found an interesting feature. If I pick a color from firefox (bars,tabs or anything else of the browser) and then go to:
ColorZilla > Inspect Last Element > In
Firebug
Then ...
1
vote
1answer
638 views
Debugging tools for Firefox extension development
I am debugging a FF extension for a client (3500 lines). I have a separated development profile with just firebug && extension developer extensions to work.
1.- I had developed a couple of ...
1
vote
3answers
254 views
How to get Chromebug to ouput logging messages to Chromebug console while debuging Firefox Extension
I'm new to both javascript and firefox extension writing so I need a really explicit answer.
I'm writing a firefox extension that will inspect and modify GET requests from the browser before the page ...
7
votes
2answers
1k views
Equivalent of Firebug for Thunderbird
When I build a newsletter and send it to myself as a test, I would like to be able to analyze the resulting HTML in my email client (Thunderbird).
Is there a tool similar to Firebug but for ...
2
votes
1answer
142 views
View chrome source in Firefox
It would be extremely helpful for developing Firefox extensions if I could see the source of, e.g., chrome://browser/content/browser.xul with overlays applied. Is there a way to do this? Chrome List ...
1
vote
2answers
1k views
iFrame in Firefox hidden window with a contentWindow.history?
I'm trying to run a hosted script with content privileges in my Firefox extension. To do this, I create a content iframe in the hidden window pointed at a html file that pulls the script. This script ...
2
votes
1answer
698 views
How to get the stack trace from errors in a FireFox extension?
Is there a convenient way to do this for my extension? I know I can use FireBug to get traces for exceptions which happen in content, but I don't think it works for chrome (does it?). I couldn't get ...