firefox - How to inspect elements using Firebug while building a custom addon -


i building custom firefox addon,but unlike chrome can inspect html within extension cannot same ff.

i need style html. clues on how can go this?

you can inspect xul , html structure of add-on using dom inspector.

to following:

  1. start extension , steps until want inspect html
  2. open dom inspector via firefox menu > web developer > dom inspector
  3. select document of extension via file > inspect content document or file > inspect chrome document

then you'll see structure , should able inspect element inside of via inspector tool, accessible via button in upper right corner , works similar 1 in firebug clicking on element inside extension.

this tool used firebug working group inspect html structures inside firebug.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -