Use Firebug Lite in Internet Explorer on any page
Use Firebug Lite in Internet Explorer on any page with a simple copy and paste in the URL bar. Firebug provides a lite version for IE to inspect page elements and perform of functions as well.
To use Firebug in Internet Explorer, simple copy and paste the following code into the url and click "Go" or hit the enter key. The code will append the firebug lite script for use on the page and the firebug icon will appear in the bottom right on the page.
Javascript
javascript:var script = document.createElement("script"); script.type = "text/javascript"; script.src = "https://getfirebug.com/firebug-lite.js"; document.getElementsByTagName("body")[0].appendChild(script); void(0);
To also open the console, use the following code instead:
Javascript
javascript:var script = document.createElement("script"); script.type = "text/javascript"; script.src = "https://getfirebug.com/firebug-lite.js"; document.getElementsByTagName("body")[0].appendChild(script); script.onreadystatechange = function() { if (script.readyState == "complete") { console.open(); }} void(0);
Comments
no... it just does a search on 'javascript:var script = document.createElement("script"); script.type = "text/javascript"; script.src = "https://getfirebug.com/firebug-lite.js"; document.getElementsByTagName("body")[0].appendChild(script); void(0);'