A little dab'll do ya
Code Snippets
Use Firebug in Any Browser
Just include this script on the site and you'll get a Firebug console that pops up for debugging in any browser. Not quite as full featured but it's still pretty helpful! Remember to remove it when you are done.
<script type='text/javascript' src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
Bookmarklet
Firebug Lite (drag that link to bookmarks bar)
Bookmarklet Code
javascript:var firebug=document.createElement('script');firebug.setAttribute('src','http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js');document.body.appendChild(firebug);(function(){if(window.firebug.version){firebug.init();}else{setTimeout(arguments.callee);}})();void(firebug);
Save the file linked in the upper code to the UserJS directory as a JS code with .js extension and you will be able to use it in every page you visit ( In Opera this worked, it should in others too. Yes, I know, Opera has its own developer tool. ).
Very nice !
it worked in IE too….. Great!
It’s very bad comparing to original Firebug.
@Ant: Think something in positive way.
gah this is very interesting. Seems very useful. Can’t thank you enough.
You make my day :)
Soooo useful, I really hate the Developper tool in IE.