Перевод не завершен. Пожалуйста, помогите перевести эту статью с английского.
The Browser Toolbox enables you to debug add-ons and the browser's own JavaScript code rather than just web pages like the normal Toolbox. The Browser Toolbox's context is the whole browser rather than just single page on a single tab.
Note: If you want to debug a specific add-on that is restartless or SDK-based then try the Add-on Debugger. Use the Browser Toolbox for add-ons that are neither.
Включение Панели инструментов браузера
Панель инструментов браузера отключена по умолчанию. Чтобы её включить, you need to check the settings "Enable chrome and addon debugging" and "Enable remote debugging".
To do this, open the Developer Tools Toolbox's Settings, go to the section "Advanced Settings", and check the settings "Enable chrome and addon debugging" and "Enable remote debugging".
Запуск Панели инструментов браузера
Open the Browser Toolbox through the menu button and the menu items "Developer" then "Browser Toolbox".
From Firefox 39, you can also open it with the Ctrl + Alt +Shift + I key combination ( Cmd + Opt +Shift + I on a Mac).
You'll then be presented with a dialog like this (this can be removed by setting the devtools.debugger.prompt-connection
property to false):
Click OK, and the Browser Toolbox will open in its own window:
You'll see, and be able to debug, all the JavaScript files loaded by the browser itself and by any add-ons that are running. Altogether you will have access to the following developer tools:
- Debugger (Note: If you want to debug a specific add-on that is restartless or SDK-based then try the Add-on Debugger.)
- Console
- Style Editor
- Profiler
- Network Monitor
- Scratchpad
- Page Inspector
Debugging chrome: and about: pages
From Firefox 37 onwards, you can debug chrome: and about: pages using the normal Debugger, just as if they were ordinary content pages.