F12 is a standard Firefox shortcut that turns Firefox Developer Tools on and off. When you press F12, the lower half of Firefox opens to show / show "Developer Tools", a web console (toolbar?), Which
- Logs information related to a web page: network requests, JavaScript, CSS, security errors and warnings, as well as error messages, warnings, and informational messages registered using JavaScript code that runs on the page.
- Allows you to interact with a web page by executing JavaScript expressions in the context of the page.
It also has an inspector, debugger, style editor, profiler, and more.
Again, F12 turns it on and off.
Go ≡> Web developer, and you will see a menu of all its functions and their shortcuts.
(Firebug was a free open source web extension for Firefox that made it easy to quickly debug, edit, and monitor any CSS, HTML, DOM, XHR, and JavaScript website. It was deprecated (replaced by something better) in favor of integrated developer tools (F12) added to Firefox itself. Since Firefox 57 no longer supports XUL add-ons, Firebug is no longer compatible.)
StanS source share