将 Firebug Lite 添加到 JSFiddle 以最小化启动
Add Firebug Lite to JSFiddle to start up minimized
Firebug was best development tool for web for a long time. Now that advanced well-equipped Developer Tool is shifted with every major browsers, we don't need to look for it. But sometimes while sharing JSFiddle code that prints some log to console
, or just need peeking into html attributes
or classnames
, it seems more convenient to me to just include the Firebug script 到 fiddle 而不是调出整个开发者工具。
但是当我添加 Firebug Lite to JSFiddle 时,它会像这样启动,如果不是整个输出帧,也会阻塞大部分。在我的笔记本电脑上,它挡住了整个画面。
如何添加以最小化模式启动的 Firebug Lite to JSFiddle,例如最小化时的底部水平条或此图像 bottom-right 角上的小方块?
在 HTML 中添加此代码片段以最小化 JSFiddle 中的 Firebug Lite:
<script type="text/javascript">
firebug.env.height = 200;
firebug.env.debug= false;
firebug.env.detectFirebug = true;
</script>
Firebug was best development tool for web for a long time. Now that advanced well-equipped Developer Tool is shifted with every major browsers, we don't need to look for it. But sometimes while sharing JSFiddle code that prints some log to console
, or just need peeking into html attributes
or classnames
, it seems more convenient to me to just include the Firebug script 到 fiddle 而不是调出整个开发者工具。
但是当我添加 Firebug Lite to JSFiddle 时,它会像这样启动,如果不是整个输出帧,也会阻塞大部分。在我的笔记本电脑上,它挡住了整个画面。
如何添加以最小化模式启动的 Firebug Lite to JSFiddle,例如最小化时的底部水平条或此图像 bottom-right 角上的小方块?
在 HTML 中添加此代码片段以最小化 JSFiddle 中的 Firebug Lite:
<script type="text/javascript">
firebug.env.height = 200;
firebug.env.debug= false;
firebug.env.detectFirebug = true;
</script>