Skip to content

Instantly share code, notes, and snippets.

@voku
Created June 4, 2014 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voku/7672402123346a707903 to your computer and use it in GitHub Desktop.
Save voku/7672402123346a707903 to your computer and use it in GitHub Desktop.
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. DEMO: http://jsfiddle.net/voku/Pwe3H/
<script type='text/javascript' src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
<!-- Bookmarklet Code -->
<script>
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);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment