I noticed this method for setting options for Firebug Lite:
http://getfirebug.com/firebuglite#ScriptJSONOptions
<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js">
{
overrideConsole: false,
startInNewWindow: true,
startOpened: true,
enableTrace: true
}
</script>
Is there a reference anywhere for how this is supposed to work? Which browsers support it and how doe one access the options from the linked script?
I usually work around it by creating another tag above it with options, but this looks cleaner.
Firebug would need to parse that information itself.