I've built a chrome devtools extension, and I'm now porting it to firefox. Even if the logic works perfectly, I've got a problem with styling. In Google Chrome I could just press CTRL+SHIFT+J with a devtools window focused to open a new devtools window that let me inspect my extension and the other devtools panels. Is there a similar feature for firefox? How should I debug the styling and DOM of my devtools extension?
Asked
Active
Viewed 134 times
0
-
Does this answer your question? [How to open the correct devtools console to see output from an extension script?](https://stackoverflow.com/questions/38913799/how-to-open-the-correct-devtools-console-to-see-output-from-an-extension-script) – wOxxOm Apr 13 '21 at 14:34
1 Answers
1
Debugging extension's own pages and code can be done via about:debugging
More info: Debugging

erosman
- 7,094
- 7
- 27
- 46
-
Thank you very much for the "More info" link, the "Debugging developer tools pages and panels" was exactly what I was looking for :) (though it's really unintuitive how it works, to be honest...) – Drago96 Apr 14 '21 at 14:37