Created
June 4, 2014 07:39
-
-
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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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