Firefox addon to view/edit/create localStorage data? [closed]

FireStorage Plus! A great new FireFox Addon which is officially recognized by Firebug is available from the Mozilla gallery: http://addons.mozilla.org/en-US/firefox/addon/firestorage-plus/ This plugin extends Firebug to give you the functionality you need. As with Firebug itself, FireStorage Plus! is currently under heavy development so new features come out every couple of days… It is stable and … Read more

What unique features does Firebug have that are not built-in to Firefox?

Firefox’s native developer tools have come a long way since this question was written. The differences have mainly reduced to the following points: Can’t stop the script execution on DOM mutations, XHRs, or cookie changes. XPaths can’t be copied. Missing an events side panel in the Inspector (though events are displayed within the DOM structure). … Read more

Wireshark vs Firebug vs Fiddler – pros and cons? [closed]

Wireshark, Firebug, Fiddler all do similar things – capture network traffic. Wireshark captures any kind of network packet. It can capture packet details below TCP/IP (HTTP is at the top). It does have filters to reduce the noise it captures. Firebug tracks each request the browser page makes and captures the associated headers and the … Read more

Firebug says “No Javascript on this page”, even though JavaScript does exist on the page

As of Firefox version 50, it seems that Firebug will no longer work as Mozilla are migrating to Firefox Devtools. The tab Tools/Web Developer has a ‘debugger’ option. See this page for a discussion on the migration. Read all the posts dated 19 November for further information. It seems to me that the option gives … Read more

How can I inspect and tweak :before and :after pseudo-elements in-browser?

In Chrome’s Dev tools, the styles of a pseudo-element are visible in the panel: Otherwise, you can also input the following line in the JavaScript console, and inspect the returned CSSStyleDeclaration object: getComputedStyle(document.querySelector(‘html > body’), ‘:before’); window.getComputedStyle document.querySelector

How can I use console logging in Internet Explorer?

You can access IE8 script console by launching the “Developer Tools” (F12). Click the “Script” tab, then click “Console” on the right. From within your JavaScript code, you can do any of the following: <script type=”text/javascript”> console.log(‘some msg’); console.info(‘information’); console.warn(‘some warning’); console.error(‘some error’); console.assert(false, ‘YOU FAIL’); </script> Also, you can clear the Console by calling … Read more